# File lib/webmock/util/json.rb, line 13 def self.unescape(str) str.gsub(/\\u([0-9a-f]{4})/) { [$1.hex].pack("U") } end