Class: Float
- Includes:
- ActiveSupport::NumericWithFormat
- Defined in:
- lib/active_support/core_ext/object/json.rb
Instance Method Summary collapse
-
#as_json(options = nil) ⇒ Object
Encoding Infinity or NaN to JSON should return “null”.
Methods included from ActiveSupport::NumericWithFormat
Instance Method Details
#as_json(options = nil) ⇒ Object
Encoding Infinity or NaN to JSON should return “null”. The default returns “Infinity” or “NaN” which are not valid JSON.
119 120 121 |
# File 'lib/active_support/core_ext/object/json.rb', line 119 def as_json( = nil) # :nodoc: finite? ? self : nil end |