a1adfc8706
13 lines
271 B
JavaScript
13 lines
271 B
JavaScript
'use strict'
|
|||
|
|||
const { stringify } = require('jsonfile/utils')
|
|||
const { outputFileSync } = require('../output')
|
|||
|
|||
function outputJsonSync (file, data, options) {
|
|||
const str = stringify(data, options)
|
|||
|
|||
outputFileSync(file, str, options)
|
|||
}
|
|||
|
|||
module.exports = outputJsonSync
|