summaryrefslogtreecommitdiff
path: root/includes/search/node_modules/fs-extra/lib/json/jsonfile.js
blob: f11d34d623d879f1d443dfa8e4e2ce4e13170b75 (plain)
1
2
3
4
5
6
7
8
9
10
11
'use strict'

const jsonFile = require('jsonfile')

module.exports = {
  // jsonfile exports
  readJson: jsonFile.readFile,
  readJsonSync: jsonFile.readFileSync,
  writeJson: jsonFile.writeFile,
  writeJsonSync: jsonFile.writeFileSync
}