mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-14 20:30:06 +00:00
api/load-from-fs: refactor loadFile, use in loadJSON
This commit is contained in:
parent
0e0ad7cb0e
commit
6d817f149e
1 changed files with 2 additions and 6 deletions
|
@ -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')
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue