1
0
mirror of https://gitee.com/onvia/ccc-tnt-psd2ui synced 2025-06-10 04:34:02 +00:00
2023-07-24 11:13:08 +08:00

12 lines
238 B
JavaScript

'use strict'
const jsonFile = require('jsonfile')
module.exports = {
// jsonfile exports
readJson: jsonFile.readFile,
readJsonSync: jsonFile.readFileSync,
writeJson: jsonFile.writeFile,
writeJsonSync: jsonFile.writeFileSync
}