mirror of
https://github.com/wukko/cobalt.git
synced 2025-06-13 05:37:44 +02:00
loadFromFs: clean up
This commit is contained in:
@ -3,14 +3,14 @@ import * as fs from "fs";
|
||||
export function loadJSON(path) {
|
||||
try {
|
||||
return JSON.parse(fs.readFileSync(path, 'utf-8'))
|
||||
} catch(e) {
|
||||
} catch {
|
||||
return false
|
||||
}
|
||||
}
|
||||
export function loadFile(path) {
|
||||
try {
|
||||
return fs.readFileSync(path, 'utf-8')
|
||||
} catch(e) {
|
||||
} catch {
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user