1
0
mirror of https://github.com/videojs/video.js.git synced 2025-07-09 01:15:31 +02:00

fix(MapSham): fix set method to use map property (#7000)

This commit is contained in:
Armin
2020-12-18 01:49:17 +03:30
committed by GitHub
parent 11d37e28fd
commit a35a1217f0

View File

@ -15,7 +15,7 @@ class MapSham {
return has;
}
set(key, value) {
this.set_[key] = value;
this.map_[key] = value;
return this;
}
forEach(callback, thisArg) {