lenient-json
v1.0.1
Published
Extended JSON.
Downloads
2
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-json
const lson = require('lenient-json');
lson.parse('[,,NaN,]'); // [undefined, undefined, NaN, undefined]
lson.parse("{'a': -Infinity }"); // { a: -Infinity }
License
BSD 3 Clause.