diff options
author | Adam Scarr <adam@vektah.net> | 2017-08-10 22:06:08 +1000 |
---|---|---|
committer | Adam Scarr <adam@vektah.net> | 2017-08-10 22:06:08 +1000 |
commit | 8a92b5348f8cf6769f30237df906ee9ce71ad237 (patch) | |
tree | ee23dda7188bab1a01892fba4c1c697263c3a9a6 /json/json.go | |
parent | a0e66b1c46ec57218f8a95a21ace7cbbceb29ec2 (diff) |
Unicode safe by default
Diffstat (limited to 'json/json.go')
-rw-r--r-- | json/json.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/json/json.go b/json/json.go index 0d78cf5..8129a8a 100644 --- a/json/json.go +++ b/json/json.go @@ -37,5 +37,5 @@ func init() { } func Unmarshal(input string) (interface{}, error) { - return Run(_value, input) + return Run(_value, input, ASCIIWhitespace) } |