cobalt/src/modules/sub/loadFromFs.js
2024-05-15 22:43:33 +06:00

17 lines
303 B
JavaScript

import * as fs from "fs";
export function loadJSON(path) {
try {
return JSON.parse(fs.readFileSync(path, 'utf-8'))
} catch {
return false
}
}
export function loadFile(path) {
try {
return fs.readFileSync(path, 'utf-8')
} catch {
return false
}
}