1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 14:01:55 +00:00
musix-oss/node_modules/ytdl-core/lib/cache.js

33 lines
603 B
JavaScript
Raw Normal View History

2020-03-03 20:30:50 +00:00
// A cache that expires.
module.exports = class Cache extends Map {
constructor() {
super();
this.timeout = 1000;
}
set(key, value) {
super.set(key, {
tid: setTimeout(this.delete.bind(this, key), this.timeout),
value,
});
}
get(key) {
let entry = super.get(key);
if (entry) {
return entry.value;
}
}
delete(key) {
let entry = super.get(key);
if (entry) {
clearTimeout(entry.tid);
super.delete(key);
}
}
clear() {
for (let entry of this.values()) {
clearTimeout(entry.tid);
}
super.clear();
}
};