UNPKG
frozen-map
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
github.com/kiwi-lib/libraries
frozen-map
/
esm
/
frozen-map.js
9 lines
•
201 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
class
FrozenMap
extends
Map
{
set
(key, value) {
if
(!
this
.has(key)) {
super
.
set
(key, value); }
return
this
; } }
//# sourceMappingURL=frozen-map.js.map