Class: Float

Inherits:
Object show all
Defined in:
lib/active_support/json/encoding.rb

Instance Method Summary collapse

Instance Method Details

#as_json(options = nil) ⇒ Object

Encoding Infinity or NaN to JSON should return “null”. The default returns “Infinity” or “NaN” which breaks parsing the JSON. E.g. JSON.parse(‘’).



221
222
223
# File 'lib/active_support/json/encoding.rb', line 221

def as_json(options = nil) #:nodoc:
  finite? ? self : nil
end