10000 deploy: f3eff2592e10249d7423845e06cc0c07b6aba3fd · phocks/immutable-js@0209e5c · GitHub
[go: up one dir, main page]

Skip to content

Commit 0209e5c

Browse files
deploy: f3eff25
1 parent e5b9984 commit 0209e5c

File tree

3 files changed

+23
-19
lines changed

3 files changed

+23
-19
lines changed

dist/immutable.es.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5300,14 +5300,16 @@ mixin(SetCollection, {
53005300
},
53015301
});
53025302

5303-
SetCollection.prototype.has = CollectionPrototype.includes;
5304-
SetCollection.prototype.contains = SetCollection.prototype.includes;
5303+
var SetCollectionPrototype = SetCollection.prototype;
5304+
SetCollectionPrototype.has = CollectionPrototype.includes;
5305+
SetCollectionPrototype.contains = SetCollectionPrototype.includes;
5306+
SetCollectionPrototype.keys = SetCollectionPrototype.values;
53055307

53065308
// Mixin subclasses
53075309

5308-
mixin(KeyedSeq, KeyedCollection.prototype);
5309-
mixin(IndexedSeq, IndexedCollection.prototype);
5310-
mixin(SetSeq, SetCollection.prototype);
5310+
mixin(KeyedSeq, KeyedCollectionPrototype);
5311+
mixin(IndexedSeq, IndexedCollectionPrototype);
5312+
mixin(SetSeq, SetCollectionPrototype);
53115313

53125314
// #pragma Helper functions
53135315

dist/immutable.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5306,14 +5306,16 @@
53065306
},
53075307
});
53085308

5309-
SetCollection.prototype.has = CollectionPrototype.includes;
5310-
SetCollection.prototype.contains = SetCollection.prototype.includes;
5309+
var SetCollectionPrototype = SetCollection.prototype;
5310+
SetCollectionPrototype.has = CollectionPrototype.includes;
5311+
SetCollectionPrototype.contains = SetCollectionPrototype.includes;
5312+
SetCollectionPrototype.keys = SetCollectionPrototype.values;
53115313

53125314
// Mixin subclasses
53135315

5314-
mixin(KeyedSeq, KeyedCollection.prototype);
5315-
mixin(IndexedSeq, IndexedCollection.prototype);
5316-
mixin(SetSeq, SetCollection.prototype);
5316+
mixin(KeyedSeq, KeyedCollectionPrototype);
5317+
mixin(IndexedSeq, IndexedCollectionPrototype);
5318+
mixin(SetSeq, SetCollectionPrototype);
53175319

53185320
// #pragma Helper functions
53195321

0 commit comments

Comments
 (0)
0