mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.json: Add json.encode_array() (thanks B)
This commit is contained in:
parent
afbece2a94
commit
533a5899e3
1 changed files with 5 additions and 0 deletions
|
@ -148,6 +148,11 @@ function json.encode_ordered(obj)
|
|||
simplesave(obj, t);
|
||||
return t_concat(t);
|
||||
end
|
||||
function json.encode_array(obj)
|
||||
local t = {};
|
||||
arraysave(obj, t);
|
||||
return t_concat(t);
|
||||
end
|
||||
|
||||
-----------------------------------
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue