mirror of
https://github.com/wukko/cobalt.git
synced 2025-04-30 06:24:25 +02:00
api/load-from-fs: refactor loadFile, use in loadJSON
This commit is contained in:
parent
0e0ad7cb0e
commit
6d817f149e
@ -9,16 +9,12 @@ const root = join(
|
|||||||
|
|
||||||
export function loadJSON(path) {
|
export function loadJSON(path) {
|
||||||
try {
|
try {
|
||||||
return JSON.parse(fs.readFileSync(join(root, path), 'utf-8'))
|
return JSON.parse(loadFile(path))
|
||||||
} catch {
|
} catch {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function loadFile(path) {
|
export function loadFile(path) {
|
||||||
try {
|
return fs.readFileSync(join(root, path), 'utf-8')
|
||||||
return fs.readFileSync(path, 'utf-8')
|
|
||||||
} catch {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user