8000 Pulling 28aed6819e9d7dfc01476b3ed4b4f421a2a6481d into a bug fix branch · powercoder23/immutable-js@c139c4f · GitHub
[go: up one dir, main page]

Skip to content

Commit c139c4f

Browse files
committed
Pulling 28aed68 into a bug fix branch
1 parent d986fa0 commit c139c4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Sequence.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ class Sequence {
139139
var iterations = 0;
140140
return other.every((v, k) => {
141141
var entry = entries[iterations++];
142-
return is(k, entry[0]) && is(v, entry[1]);
143-
});
142+
return entry && is(k, entry[0]) && is(v, entry[1]);
143+
}) && iterations === entries.length;
144144
}
145145

146146
join(separator) {

0 commit comments

Comments
 (0)
0