XuelesszzZ 94af2b8e7b 6-30-5 | před 1 rokem | |
---|---|---|
.. | ||
node_modules | před 1 rokem | |
index.js | před 1 rokem | |
license | před 1 rokem | |
package.json | před 1 rokem | |
readme.md | před 1 rokem |
Read and parse a JSON file
Strips UTF-8 BOM, uses graceful-fs
, and throws more helpful JSON errors.
$ npm install --save load-json-file
const loadJsonFile = require('load-json-file');
loadJsonFile('foo.json').then(json => {
console.log(json);
//=> {foo: true}
});
Returns a promise for the parsed JSON.
Returns the parsed JSON.
MIT © Sindre Sorhus