PIbd-21_Danilov_V.V._Intern.../Lab3/node_modules/json-parse-helpfulerror
Владимир Данилов 83490711d5 отчет
2023-12-19 20:23:11 +04:00
..
test отчет 2023-12-19 20:23:11 +04:00
.editorconfig отчет 2023-12-19 20:23:11 +04:00
.editorconfig~ отчет 2023-12-19 20:23:11 +04:00
.npmignore отчет 2023-12-19 20:23:11 +04:00
index.js отчет 2023-12-19 20:23:11 +04:00
index.js~ отчет 2023-12-19 20:23:11 +04:00
LICENSE отчет 2023-12-19 20:23:11 +04:00
package.json отчет 2023-12-19 20:23:11 +04:00
README.md отчет 2023-12-19 20:23:11 +04:00

json-parse-helpfulerror

A drop-in replacement for JSON.parse that uses https://npmjs.org/jju to provide more useful error messages in the event of a parse error.

Example

Installation

npm i -S json-parse-helpfulerror

Use

var jph = require('json-parse-helpfulerror');

var notJSON = "{'foo': 3}";     // keys must be double-quoted in JSON

JSON.parse(notJSON);            // throws unhelpful error

jph.parse("{'foo': 3}")         // throws more helpful error: "Unexpected token '\''..."

License

MIT