mirror of
https://github.com/jprichardson/node-fs-extra.git
synced 2026-01-18 16:13:55 +00:00
* Upgrade jsonfile Fixes #745 * Test from main entry point * Make outputJson() mutation-proof Fixes #702 * Update outputJsonSync() to match async implementation
12 lines
238 B
JavaScript
12 lines
238 B
JavaScript
'use strict'
|
|
|
|
const jsonFile = require('jsonfile')
|
|
|
|
module.exports = {
|
|
// jsonfile exports
|
|
readJson: jsonFile.readFile,
|
|
readJsonSync: jsonFile.readFileSync,
|
|
writeJson: jsonFile.writeFile,
|
|
writeJsonSync: jsonFile.writeFileSync
|
|
}
|