From 7b78aaea72baa96883674582577e9c076040ae27 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 16 Feb 2020 23:15:50 +0000 Subject: [PATCH] fix(FastMap): added .clean() method --- ts/lik.fastmap.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ts/lik.fastmap.ts b/ts/lik.fastmap.ts index 60f4d0a..4ba8465 100644 --- a/ts/lik.fastmap.ts +++ b/ts/lik.fastmap.ts @@ -38,4 +38,8 @@ export class FastMap { } return keys; } + + public clean() { + this.mapObject = {}; + } }