UNPKG

jsonc-simple-parser

Version:

A simple JSON parser that supports comments and optional trailing commas.

25 lines (13 loc) 253 B
/* MAIN */ const Context = { /* VARIABLES */ offset: 0, offsetMax: Infinity, /* API */ init: ( limit: number = Infinity ): void => { Context.offset = 0; Context.offsetMax = limit; } }; /* EXPORT */ export default Context;