Sha256: e46dcc11c6e844f644ca331bf7d5caeb3ad1357ca540215da9668f6c58c6aa89

Contents?: true

Size: 409 Bytes

Versions: 294

Compression:

Stored size: 409 Bytes

Contents

'use strict';


var Cache = module.exports = function Cache() {
  this._cache = {};
};


Cache.prototype.put = function Cache_put(key, value) {
  this._cache[key] = value;
};


Cache.prototype.get = function Cache_get(key) {
  return this._cache[key];
};


Cache.prototype.del = function Cache_del(key) {
  delete this._cache[key];
};


Cache.prototype.clear = function Cache_clear() {
  this._cache = {};
};

Version data entries

294 entries across 171 versions & 22 rubygems

Version Path
immosquare-cleaner-0.1.68 node_modules/ajv/lib/cache.js
immosquare-cleaner-0.1.67 node_modules/ajv/lib/cache.js
immosquare-cleaner-0.1.66 node_modules/ajv/lib/cache.js
immosquare-cleaner-0.1.65 node_modules/ajv/lib/cache.js
immosquare-cleaner-0.1.64 node_modules/ajv/lib/cache.js
immosquare-cleaner-0.1.63 node_modules/ajv/lib/cache.js
rapid_stack-0.2.0 templates/frontend/node_modules/@eslint/eslintrc/node_modules/ajv/lib/cache.js
rapid_stack-0.2.0 templates/frontend/node_modules/eslint/node_modules/ajv/lib/cache.js
rapid_stack-0.2.0 templates/frontend/node_modules/webpack/node_modules/ajv/lib/cache.js
rapid_stack-0.1.1 templates/FrontEnd/node_modules/eslint/node_modules/ajv/lib/cache.js
rapid_stack-0.1.1 templates/FrontEnd/node_modules/webpack/node_modules/ajv/lib/cache.js
rapid_stack-0.1.1 templates/FrontEnd/node_modules/@eslint/eslintrc/node_modules/ajv/lib/cache.js
rapid_stack-0.1.0 templates/FrontEnd/node_modules/@eslint/eslintrc/node_modules/ajv/lib/cache.js
rapid_stack-0.1.0 templates/FrontEnd/node_modules/webpack/node_modules/ajv/lib/cache.js
rapid_stack-0.1.0 templates/FrontEnd/node_modules/eslint/node_modules/ajv/lib/cache.js
immosquare-cleaner-0.1.62 node_modules/ajv/lib/cache.js
immosquare-cleaner-0.1.61 node_modules/ajv/lib/cache.js
immosquare-cleaner-0.1.60 node_modules/ajv/lib/cache.js
immosquare-cleaner-0.1.59 node_modules/ajv/lib/cache.js
immosquare-cleaner-0.1.58 node_modules/ajv/lib/cache.js