UNPKG

tesseract.js-utils

Version:
12 lines (10 loc) 215 B
const { set, get, del } = require('idb-keyval'); module.exports = { readCache: get, writeCache: set, deleteCache: del, checkCache: path => ( get(path) .then(v => typeof v !== 'undefined') ), };