isaacscript-common
Version:
Helper functions and features for IsaacScript mods.
13 lines (11 loc) • 358 B
TypeScript
/**
* This is the custom JSON parser library called "json.lua". It is located at:
* https://github.com/rxi/json.lua
*
* This parser was measured to be 11.8 times faster than the vanilla parser at decoding a sample
* "save1.dat" file.
*
* @noSelfInFile
*/
export function encode(data: unknown): string;
export function decode(data: string): unknown;