# File lib/new_relic/json_wrapper.rb, line 59
    def self.dump(object, options={})
      object = normalize(object) if options[:normalize]
      # okjson doesn't handle symbol keys, so we must stringify them before encoding
      object = Agent::HashExtensions.stringify_keys_in_object(object) if backend_name == :okjson
      @dump_method.call(object)
    end