innovationDriveApp/node_modules/cosmiconfig/lib/parseJson.js
2018-07-08 19:21:40 +10:00

12 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;
}
};