json4lua
json4lua copied to clipboard
There appears to be a bug in json.lua at line 145
I was running luacheck on json.lua and it found a few minor things. The important one is that json.lua had:
return decode(s, decode_scanComment(s,startPos))
but there is no decode() function.
I changed it to:
return json.decode(s, decode_scanComment(s,startPos))