simple-on-disk-cache
Version:
A simple on-disk cache, supporting local and remote filesystem targets, with time based expiration policies.
10 lines • 858 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.castToSafeOnDiskCacheKey = exports.InvalidOnDiskCacheKeyError = exports.createCache = void 0;
var cache_1 = require("./cache");
Object.defineProperty(exports, "createCache", { enumerable: true, get: function () { return cache_1.createCache; } });
var assertIsValidOnDiskCacheKey_1 = require("./key/assertIsValidOnDiskCacheKey");
Object.defineProperty(exports, "InvalidOnDiskCacheKeyError", { enumerable: true, get: function () { return assertIsValidOnDiskCacheKey_1.InvalidOnDiskCacheKeyError; } });
var castToSafeOnDiskCacheKey_1 = require("./key/castToSafeOnDiskCacheKey");
Object.defineProperty(exports, "castToSafeOnDiskCacheKey", { enumerable: true, get: function () { return castToSafeOnDiskCacheKey_1.castToSafeOnDiskCacheKey; } });
//# sourceMappingURL=index.js.map