We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Each key points to an object with timeout: <timer_id> Timers are all live even after deleting the actual values for which we created those timers:
timeout: <timer_id>
MemoryCache.prototype.clear = function() { Object.keys(this.cache).forEach(function(key) { this.delete(key) }, this) return true }
In MemoryCache.prototype.delete we care about this:
MemoryCache.prototype.delete
if (entry) { clearTimeout(entry.timeout) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Each key points to an object with
timeout: <timer_id>
Timers are all live even after deleting the actual values for which we created those timers:
In
MemoryCache.prototype.delete
we care about this:The text was updated successfully, but these errors were encountered: