Update config.ts

This commit is contained in:
FlorianZahn
2021-10-06 16:33:11 +02:00
committed by GitHub
parent 51aab00985
commit 988905c155

View File

@@ -120,14 +120,6 @@ class SBMap<T, U> 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);