Software /
code /
prosody
Diff
util/json.lua @ 5776:bd0ff8ae98a8
Remove all trailing whitespace
author | Florian Zeitz <florob@babelmonkeys.de> |
---|---|
date | Fri, 09 Aug 2013 17:48:21 +0200 |
parent | 5565:6dd806829226 |
child | 6785:bf1f09a5bcf7 |
line wrap: on
line diff
--- a/util/json.lua Fri Aug 09 16:03:48 2013 +0200 +++ b/util/json.lua Fri Aug 09 17:48:21 2013 +0200 @@ -348,9 +348,9 @@ function json.decode(json) json = json:gsub("\\.", first_escape) -- get rid of all escapes except \uXXXX, making string parsing much simpler --:gsub("[\r\n]", "\t"); -- \r\n\t are equivalent, we care about none of them, and none of them can be in strings - + -- TODO do encoding verification - + local val, index = _readvalue(json, 1); if val == nil then return val, index; end if json:find("[^ \t\r\n]", index) then return nil, "garbage at eof"; end