Fix Firefox infinite recursion issue.

This commit is contained in:
Ajay Ramachandran 2020-02-09 10:34:18 -05:00
parent c76d2c9a95
commit 1753c05686

View file

@ -48,7 +48,7 @@ class SBMap<T, U> extends Map {
// Import all entries if they were given
if (entries !== undefined) {
for (const item of entries) {
this.set(item[0], item[1])
super.set(item[0], item[1])
}
}
}