This branch is85 commits ahead of,16 commits behindmpx/lua-cjson:master. Folders and files Latest commit zhuizhuhaomeng doc: added doc for encode_skip_unsupported_value_types. Aug 1, 2024 91ca29d·Aug 1, 2024 308 Commits .github/workflows ...
dtoa.c dtoa_config.h fpconv.c fpconv.h g_fmt.c lua-cjson-2.1devel-1.rockspec lua-cjson.spec lua_cjson.c manual.adoc performance.adoc rfc4627.txt runtests.sh strbuf.c strbuf.h Repository files navigation README MIT license
fpconv.c fpconv.h g_fmt.c lua-cjson-2.1devel-1.rockspec lua-cjson.spec lua_cjson.c manual.adoc performance.adoc rfc4627.txt runtests.sh strbuf.c strbuf.h Lua CJSON 2.1devel Manual Overview The Lua CJSON module provides JSON support for Lua. ...
lua-cjson-2.1.0.10-1.rockspec bugfix: windows luarocks make doesn't export cjson.safe. 9 months ago lua-cjson.spec Add release notes for 2.1.0 release 11 years ago lua_cjson.c Update lua_cjson.c 6 months ago manual.txt Use Javascript compat values for Infinity/NaN 11 years...
lua-cjson-2.1devel-1.rockspec Bump version to 2.1devel 11 years ago lua-cjson.spec Use more common adoc extension for AsciiDoc 6 years ago lua_cjson.c Allows to encode empty tables as arrays. 4 years ago manual.adoc Update manual 6 years ago performance.adoc Use more common adoc...
Forked from https://github.com/mpx/lua-cjson changed: convert json null to nil, means no related key in metatable Name lua-cjson - Fast JSON encoding/parsing Table of Contents Name Description Additions to mpx/lua encode_empty_table_as_object empty_array array_mt empty_array_mt encode...
This branch is 1 commit behind openresty/lua-cjson:master.Folders and files Latest commit 3 people Bugfix: Lua cjson integer overflow issues (CVE-2022-24834) (openresty#94 2bfad8f· Jul 20, 2023 History303 Commits .github/workflows add lua 5.4 to test suite Oct 18, 2022 devel Add origi...
lua_cjson.c fix for windows Jun 21, 2022 manual.adoc Update manual Aug 25, 2016 performance.adoc Use more common adoc extension for AsciiDoc Aug 24, 2016 rfc4627.txt Initial commit Apr 15, 2011 runtests.sh Bump version to 2.1devel ...
decode null to cjson.null #88 openedJun 13, 2024byxxy7800 Missing header guards of strbuf.h #87 openedMay 23, 2024bymyzhan Precompiled library for windows #86 openedJan 28, 2024byPaws-Dev Compilation warning about fpconv_init #81 openedMar 15, 2022bygraywolf-at-work ...
local cjson = require "cjson" local json = cjson.encode({ foo = "bar", some_object = {}, some_array = cjson.empty_array }) This will generate: { "foo": "bar", "some_object": {}, "some_array": [] } Back to TOC array_mt syntax: setmetatable({}, cjson.array_mt) When...