Newer
Older
vue-indexer / node_modules / fs-extra / lib / json / output-json-sync.js
@eugene-sukhodolskiy eugene-sukhodolskiy on 24 Sep 276 bytes v1.0
'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