We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a96663b + 23c0fce commit e3504b2Copy full SHA for e3504b2
src/Data/Eq.js
@@ -15,7 +15,6 @@ exports.eqStringImpl = refEq;
15
exports.eqArrayImpl = function (f) {
16
return function (xs) {
17
return function (ys) {
18
- if (xs === ys) return true;
19
if (xs.length !== ys.length) return false;
20
for (var i = 0; i < xs.length; i++) {
21
if (!f(xs[i])(ys[i])) return false;
0 commit comments