UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

13 lines (8 loc) • 276 B
'use strict' const { stringify } = require('jsonfile/utils') const { outputFileSync } = require('../output-file') function outputJsonSync (file, data, options) { const str = stringify(data, options) outputFileSync(file, str, options) } module.exports = outputJsonSync