UNPKG

jsonc-simple-parser

Version:

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

4 lines (3 loc) 125 B
import type { AST } from '../types'; declare const tokenize: (text: string, limit?: number) => AST; export default tokenize;