UNPKG

cosmiconfig

Version:

Find and load configuration from a package.json property, rc file, or CommonJS module

13 lines (10 loc) 245 B
'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; } };