module JSON::Pure::Generator::GeneratorMethods::Hash

def json_transform(state)

def json_transform(state)
  delim = ",#{state.object_nl}"
  result = "{#{state.object_nl}"
  depth = state.depth += 1
  first = true
  indent = !state.object_nl.empty?
  each { |key, value|
    result << delim unless first
    result << state.indent * depth if indent
    result = "#{result}#{key.to_s.to_json(state)}#{state.space_before}:#{state.space}"
    if state.strict?
      raise GeneratorError, "#{value.class} not allowed in JSON"
    elsif value.respond_to?(:to_json)
      result << value.to_json(state)
    else
      result << %{"#{String(value)}"}
    end
    first = false
  }
  depth = state.depth -= 1
  unless first
    result << state.object_nl
    result << state.indent * depth if indent
  end
  result << '}'
  result
end