Skip to content

Commit

Permalink
fix(MapSham): fix set method to use map property (#7000)
Browse files Browse the repository at this point in the history
  • Loading branch information
aildermi committed Dec 17, 2020
1 parent 11d37e2 commit a35a121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/utils/map.js
Expand Up @@ -15,7 +15,7 @@ class MapSham {
return has;
}
set(key, value) {
this.set_[key] = value;
this.map_[key] = value;
return this;
}
forEach(callback, thisArg) {
Expand Down

0 comments on commit a35a121

Please sign in to comment.