Skip to content

Instantly share code, notes, and snippets.

View eromatiya's full-sized avatar
😪
Busy

eromatiya

😪
Busy
  • Philippines
View GitHub Profile
@tylerneylon
tylerneylon / json.lua
Last active May 15, 2024 12:57
Pure Lua json library.
--[[ json.lua
A compact pure-Lua JSON library.
The main functions are: json.stringify, json.parse.
## json.stringify:
This expects the following to be true of any tables being encoded:
* They only have string or number keys. Number keys must be represented as
strings in json; this is part of the json spec.