- added list of sponsors, if you host an instance, it can be enabled with showSponsors. - fixed download button thickness on ios. - about button now opens about tab when no new changelog is available.
17 lines
309 B
JavaScript
17 lines
309 B
JavaScript
import * as fs from "fs";
|
|
|
|
export function loadJSON(path) {
|
|
try {
|
|
return JSON.parse(fs.readFileSync(path, 'utf-8'))
|
|
} catch(e) {
|
|
return false
|
|
}
|
|
}
|
|
export function loadFile(path) {
|
|
try {
|
|
return fs.readFileSync(path, 'utf-8')
|
|
} catch(e) {
|
|
return false
|
|
}
|
|
}
|