Sha256: 088a5d7f58d2078ea12b7e60864175fd8ec3d6b14cce581874871a78350cdd02
Contents?: true
Size: 534 Bytes
Versions: 271
Compression:
Stored size: 534 Bytes
Contents
(function() { 'use strict'; let _cache = {}; const cache = { /** * Set an item in the cache. * @param {String} key - Name of the key. * @param {*} value - Value to store. */ set(key, value) { _cache[key] = value; }, /** * Retrieve an item from the cache. * @param {String} key - Name of the key the value was stored as. * @returns {*} The item stored */ get(key) { return _cache[key]; }, /** * Clear the cache. */ clear() { _cache = {}; } }; axe._cache = cache; })();
Version data entries
271 entries across 271 versions & 1 rubygems