mirror of https://github.com/rxi/json.lua.git
nLen initialization fixed
parent
32a59c89b0
commit
f521e4ac03
2
json.lua
2
json.lua
|
@ -67,7 +67,7 @@ local function encode_table(val, stack)
|
||||||
-- Check whether to treat as a array or object
|
-- Check whether to treat as a array or object
|
||||||
local array = true
|
local array = true
|
||||||
local length = 0
|
local length = 0
|
||||||
local nLen
|
local nLen = 0
|
||||||
for k,v in pairs(val) do
|
for k,v in pairs(val) do
|
||||||
if (type(k) ~= "number" or k<=0) and not (k == "n" and type(v) == "number") then
|
if (type(k) ~= "number" or k<=0) and not (k == "n" and type(v) == "number") then
|
||||||
array = nil
|
array = nil
|
||||||
|
|
Loading…
Reference in New Issue