function saveCache()

in scripts/bitrot.js [47:51]


function saveCache() {
    if (gCache !== null) {
        fs.writeFileSync(gCachePath, JSON.stringify(gCache, null, 2));
    }
}