Update config.ts

This commit is contained in:
FlorianZahn
2021-10-06 08:31:18 +02:00
committed by GitHub
parent 84924b6364
commit 51aab00985

View File

@@ -123,7 +123,7 @@ class SBMap<T, U> 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;