Files
med-notes/.pnpm-store/v10/files/f0/ce5475de8c96adb0d1c3613df264c1696d2f8339ab1bd922355534b2e06d532641e61315497177f7a425593d13380b44688c72bd7636ee02ac49b2f156313c
2025-05-09 05:30:08 +02:00

27 lines
409 B
Plaintext

'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 = {};
};