JSON

Noir.Libraries.JSON: NoirLibrary

A library containing helper methods to serialize Lua objects into JSON and back.

This code is from https://gist.github.com/tylerneylon/59f4bcf316be525b30ab


Noir.Libraries.JSON._Null: table

Represents a null value.

You do not need to reference this. Null values will just be nil in a decoded JSON object.

Used internally. Do not use this in your code.


Noir.Libraries.JSON:KindOf(obj)

Returns the type of the provided object.

Used internally. Do not use in your code.

Parameters

  • obj: any

Returns

  • "nil"|"boolean"|"number"|"string"|"table"|"function"|"array"


Escapes a string for JSON.

Used internally. Do not use in your code.

Parameters

  • str: string

Returns

  • string


Finds the point where a delimiter is and simply returns the point after.

Used internally. Do not use in your code.

Parameters

  • str: string

  • pos: integer

  • delim: string

  • errIfMissing: boolean|nil

Returns

  • integer

  • boolean


Parses a string.

Used internally. Do not use in your code.

Parameters

  • str: string

  • pos: integer

  • val: string|nil

Returns

  • string

  • integer


Parses a number.

Used internally. Do not use in your code.

Parameters

  • str: string

  • pos: integer

Returns

  • integer

  • integer


Encodes a Lua object as a JSON string.

Parameters

  • obj: table|number|string|boolean|nil

  • asKey: boolean|nil

Returns

  • string


Decodes a JSON string into a Lua object.

Parameters

  • str: string

  • pos: integer|nil

  • endDelim: string|nil

Returns

  • any

  • integer

Last updated