UNPKG

incomplete-json-parser

Version:

A JSON parser that can parse incomplete JSON strings.

6 lines (5 loc) 193 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isWhitespace = void 0; const isWhitespace = (char) => /\s/.test(char); exports.isWhitespace = isWhitespace;