From 51aab00985d90a55b3dd3f32a3cc36e38d9b29c5 Mon Sep 17 00:00:00 2001 From: FlorianZahn Date: Wed, 6 Oct 2021 08:31:18 +0200 Subject: [PATCH] Update config.ts --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index b1fc1070..8390b393 100644 --- a/src/config.ts +++ b/src/config.ts @@ -123,7 +123,7 @@ class SBMap extends Map { addArray(key: T, value: U) { // Expand an array by value - let result = super.get(key).concat(value); + const result = super.get(key).concat(value); this.set(key, result); this.update(); return result;