android-wrapper/@capacitor/cli/node_modules/fs-extra/lib/json/jsonfile.js

12 lines
238 B
JavaScript
Raw Normal View History

2025-07-06 20:20:48 +02:00
'use strict'
const jsonFile = require('jsonfile')
module.exports = {
// jsonfile exports
readJson: jsonFile.readFile,
readJsonSync: jsonFile.readFileSync,
writeJson: jsonFile.writeFile,
writeJsonSync: jsonFile.writeFileSync
}