UNPKG

nyx_server

Version:

Node内容发布

11 lines 276 B
function CatchManager(){ this.cache = {}; } CatchManager.prototype.clear = function(){ console.log("清空缓存"); var self = this; Object.keys(this.cache).forEach(function(key){ delete self.cache[key]; }); }; module.exports = new CatchManager();