UNPKG

incomplete-json-parser

Version:

A JSON parser that can parse incomplete JSON strings.

14 lines (13 loc) 260 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Scope = void 0; class Scope { finish = false; write(letter) { return false; } getOrAssume() { return undefined; } } exports.Scope = Scope;