mirror of
https://github.com/thedevs-network/the-guard-bot
synced 2025-09-07 17:45:16 +00:00
11 lines
283 B
JavaScript
11 lines
283 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const { readFileSync, writeFileSync } = require('fs');
|
||
|
|
||
|
const loadJSON = file => JSON.parse(readFileSync(file, 'utf8'));
|
||
|
|
||
|
const saveJSON = (file, data) => writeFileSync(file,
|
||
|
JSON.stringify(data, undefined, '\t'));
|
||
|
|
||
|
module.exports = { loadJSON, saveJSON };
|