mirror of
https://github.com/jprichardson/node-fs-extra.git
synced 2026-01-18 16:13:55 +00:00
12 lines
298 B
JavaScript
12 lines
298 B
JavaScript
'use strict'
|
|
|
|
const jsonFile = require('./jsonfile')
|
|
|
|
jsonFile.outputJsonSync = require('./output-json-sync')
|
|
jsonFile.outputJson = require('./output-json')
|
|
// aliases
|
|
jsonFile.outputJSONSync = require('./output-json-sync')
|
|
jsonFile.outputJSON = require('./output-json')
|
|
|
|
module.exports = jsonFile
|