cache.js 212 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 const { set, get, del } = require('idb-keyval'); module.exports = { readCache: get, writeCache: set, deleteCache: del, checkCache: (path) => ( get(path).then((v) => typeof v !== 'undefined') ), };