From 988905c15500e22c28bfb8c3cfe48708ae848023 Mon Sep 17 00:00:00 2001 From: FlorianZahn Date: Wed, 6 Oct 2021 16:33:11 +0200 Subject: [PATCH] Update config.ts --- src/config.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/config.ts b/src/config.ts index 8390b393..5d8a58e4 100644 --- a/src/config.ts +++ b/src/config.ts @@ -120,14 +120,6 @@ class SBMap extends Map { this.update(); return result; } - - addArray(key: T, value: U) { - // Expand an array by value - const result = super.get(key).concat(value); - this.set(key, result); - this.update(); - return result; - } delete(key) { const result = super.delete(key);