lenient-json
v1.0.1
Published
Extended JSON.
Readme
lenient-json
Extended JSON with benefits. Supports NaN, Infinity, undefined, array holes and any type of JavaScript string quotes.
Usage
npm install --save lenient-jsonconst lson = require('lenient-json');
lson.parse('[,,NaN,]'); // [undefined, undefined, NaN, undefined]
lson.parse("{'a': -Infinity }"); // { a: -Infinity }License
BSD 3 Clause.
