Files
old-slucajna-televizija/web/node_modules/cosmiconfig/lib/parseJson.js
2017-10-16 11:19:46 +02:00

13 lines
245 B
JavaScript

'use strict';
var parseJson = require('parse-json');
module.exports = function (json, filepath) {
try {
return parseJson(json);
} catch (err) {
err.message = 'JSON Error in ' + filepath + ':\n' + err.message;
throw err;
}
};