json4lua icon indicating copy to clipboard operation
json4lua copied to clipboard

There appears to be a bug in json.lua at line 145

Open rtmclay opened this issue 8 years ago • 0 comments

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))

rtmclay avatar Jul 25 '16 21:07 rtmclay