fix(FastMap): added .clean() method

This commit is contained in:
Philipp Kunz 2020-02-16 23:15:50 +00:00
parent 54a63d1f41
commit 7b78aaea72

View File

@ -38,4 +38,8 @@ export class FastMap<T> {
}
return keys;
}
public clean() {
this.mapObject = {};
}
}