UNPKG

jsonc-simple-parser

Version:

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

10 lines (9 loc) 207 B
/* IMPORT */ /* MAIN */ const detokenize = (token) => { if ('source' in token) return token.source; return token.children.map(detokenize).join(''); }; /* EXPORT */ export default detokenize;