16 lines
565 B
JavaScript
16 lines
565 B
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.clearCache = exports.getCache = void 0;
|
|
const flat_cache_1 = __importDefault(require("flat-cache"));
|
|
const getCache = () => {
|
|
return flat_cache_1.default.create("honkit-3.6.7");
|
|
};
|
|
exports.getCache = getCache;
|
|
const clearCache = () => {
|
|
return flat_cache_1.default.clearCacheById("honkit-3.6.7");
|
|
};
|
|
exports.clearCache = clearCache;
|