UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

22 lines 434 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.init = init; exports.reset = reset; exports.get = get; exports.set = set; let repoCache; function init() { repoCache = {}; } function reset() { repoCache = undefined; } function get(key) { return repoCache?.[key]; } function set(key, value) { if (repoCache) { repoCache[key] = value; } } //# sourceMappingURL=index.js.map