Method: Sequel::SequelMethods#parse_json

Defined in:
lib/sequel/core.rb

#parse_json(json) ⇒ Object

Parse the string as JSON and return the result. This can be overridden to use an alternative json implementation.



204
205
206
# File 'lib/sequel/core.rb', line 204

def parse_json(json)
  JSON.parse(json, :create_additions=>false)
end