Add stop functions

This commit is contained in:
Travis Ralston 2020-09-26 18:40:26 -06:00
parent cb06b8daf6
commit 96fa34eecf
2 changed files with 26 additions and 0 deletions

View file

@ -60,4 +60,10 @@ export class EnhancedMap<K, V> extends Map<K, V> {
this.set(key, def);
return def;
}
public remove(key: K): V {
const v = this.get(key);
this.delete(key);
return v;
}
}