mirror of
https://github.com/deployphp/action.git
synced 2024-11-23 12:29:03 +00:00
13 lines
277 B
JavaScript
13 lines
277 B
JavaScript
'use strict'
|
|
|
|
const { stringify } = require('jsonfile/utils')
|
|
const { outputFile } = require('../output-file')
|
|
|
|
async function outputJson (file, data, options = {}) {
|
|
const str = stringify(data, options)
|
|
|
|
await outputFile(file, str, options)
|
|
}
|
|
|
|
module.exports = outputJson
|