-- Only included if `pxs_json` feature.
-- Import __dkjson__ lib
local__dkjson__=require("__dkjson__")localpxs_json={}-- Encode a Tree into a JSON string.
functionpxs_json.encode(object)return__dkjson__.encode(object)end-- Decode a string into a Tree
functionpxs_json.decode(string)return__dkjson__.decode(string,1,nil)endreturnpxs_json