UNPKG

cosmiconfig

Version:

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

17 lines (14 loc) 297 B
// 'use strict'; const parseJson = require('parse-json'); module.exports = function parseJsonWrapper( json , filepath ) { try { return parseJson(json); } catch (err) { err.message = `JSON Error in ${filepath}:\n${err.message}`; throw err; } };