api/load-from-fs: refactor loadFile, use in loadJSON

This commit is contained in:
dumbmoron 2024-08-03 09:28:59 +00:00
parent 0e0ad7cb0e
commit 6d817f149e
No known key found for this signature in database

View file

@ -9,16 +9,12 @@ const root = join(
export function loadJSON(path) {
try {
return JSON.parse(fs.readFileSync(join(root, path), 'utf-8'))
return JSON.parse(loadFile(path))
} catch {
return false
}
}
export function loadFile(path) {
try {
return fs.readFileSync(path, 'utf-8')
} catch {
return false
}
return fs.readFileSync(join(root, path), 'utf-8')
}