lua-cjson
lua-cjson copied to clipboard
decode will not decode an encoded table
Hi, Using lua v5.1 and lua-cjson v2.1.0.6-1.
Why print(cjson.decode(cjson.encode({success = true}))) results in "" (an empty line) and not {success = true}?
What am I missing?!
Thanks!
try
print(cjson.encode(cjson.decode(cjson.encode({success = true}))))