module JSON::Pure::Generator::GeneratorMethods::NilClass
Public Instance Methods
to_json(*)
click to toggle source
Returns a JSON string for nil: 'null'.
# File lib/json/pure/generator.rb, line 517 def to_json(*) 'null' end