Lobashov_Ivan_PIBD-21_IP/Lab3/node_modules/json-parse-helpfulerror/index.js~
2024-01-10 22:39:31 +04:00

21 lines
372 B
JavaScript

'use strict';
var jju = require('jju');
function parse(text, reviver) {
try {
return JSON.parse(text, reviver);
} catch(err) {
// we expect this throw with a more informative message
jju.parse(text, {
mode: 'json',
reviver: reviver
});
// if it didn't throw, re-throw the original error
throw err;
}
}
module.exports = parse;