UNPKG

async-disk-cache

Version:
13 lines (9 loc) 221 B
'use strict'; module.exports = class CacheEntry { constructor(isCached, key, value) { this.isCached = isCached; this.key = key; this.value = value; } }; module.exports.MISS = new module.exports(false);