UNPKG

tesseract.js

Version:
11 lines (9 loc) 208 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') ), };