parseJson.js 245 B

123456789101112
  1. 'use strict';
  2. var parseJson = require('parse-json');
  3. module.exports = function (json, filepath) {
  4. try {
  5. return parseJson(json);
  6. } catch (err) {
  7. err.message = 'JSON Error in ' + filepath + ':\n' + err.message;
  8. throw err;
  9. }
  10. };