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
13 lines
272 B
JavaScript
13 lines
272 B
JavaScript
'use strict'
|
|
|
|
const { stringify } = require('jsonfile/utils')
|
|
const { outputFile } = require('../output')
|
|
|
|
async function outputJson (file, data, options = {}) {
|
|
const str = stringify(data, options)
|
|
|
|
await outputFile(file, str, options)
|
|
}
|
|
|
|
module.exports = outputJson
|