/ cloudformation-templates / node_modules / aws-cdk / node_modules / fs-extra / lib / json / output-json-sync.js
output-json-sync.js
1 'use strict' 2 3 const { stringify } = require('jsonfile/utils') 4 const { outputFileSync } = require('../output') 5 6 function outputJsonSync (file, data, options) { 7 const str = stringify(data, options) 8 9 outputFileSync(file, str, options) 10 } 11 12 module.exports = outputJsonSync