Sha256: be7366e0add5370b53c8e6805939ddc3c9ea7e6968130e449d409b120aeac299
Contents?: true
Size: 796 Bytes
Versions: 75
Compression:
Stored size: 796 Bytes
Contents
/** * Module dependencies. */ var NullCache = module.exports = function() {}; /** * Set cache item with given `key` to `value`. * * @param {String} key * @param {Object} value * @api private */ NullCache.prototype.set = function(key, value) {}; /** * Get cache item with given `key`. * * @param {String} key * @return {Object} * @api private */ NullCache.prototype.get = function(key) {}; /** * Check if cache has given `key`. * * @param {String} key * @return {Boolean} * @api private */ NullCache.prototype.has = function(key) { return false; }; /** * Generate key for the source `str` with `options`. * * @param {String} str * @param {Object} options * @return {String} * @api private */ NullCache.prototype.key = function(str, options) { return ''; };
Version data entries
75 entries across 23 versions & 3 rubygems