lua-json
v1.0.1
Published
Convert Lua tables to and from JSON
Downloads
2,366
Readme
lua-json
Convert Lua tables to and from JSON.
Install
yarn add lua-json
Usage
const { format, parse } = require('lua-json')
format({ x: 1 }) // 'return { x = 1 }'
parse('return { x = 1 }') // { x: 1 }
API
type Json = null | boolean | number | string | Json[] | { [_: string]: Json }
format(
value: Json,
options?: {
eol: string = '\n',
singleQuote: boolean = true,
spaces: null | number | string = 2,
}
): string
parse(value: string): Json
TODO
- More formatting options à la prettier:
printWidth
(!),trailingComma
,bracketSpacing
.