# File lib/vendor/okjson.rb, line 382
  def objenc(x)
    '{' + x.map{|k,v| encode(k) + ':' + encode(v)}.join(',') + '}'
  end