UNPKG

jsonc-simple-parser

Version:

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

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