UNPKG

jsonc-simple-parser

Version:

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

15 lines (8 loc) 205 B
/* IMPORT */ import {parse} from 'reghex'; import grammar from './grammar'; import tokens from './tokens'; /* MAIN */ const parser = parse ( grammar ( tokens ) ); /* EXPORT */ export default parser;