Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.06 KB

File metadata and controls

44 lines (31 loc) · 1.06 KB

lua-json

Version Build Dependencies Dev Dependencies

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.