We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 32a1a20 + 743e927 commit ebcfcc3Copy full SHA for ebcfcc3
src/Data/Array.js
@@ -45,7 +45,6 @@ exports.replicate = typeof Array.prototype.fill === "function" ?
45
replicatePolyfill;
46
47
exports.fromFoldableImpl = (function () {
48
- // jshint maxparams: 2
49
function Cons(head, tail) {
50
this.head = head;
51
this.tail = tail;
@@ -249,7 +248,6 @@ exports.partition = function (f) {
249
248
250
exports.sortImpl = function (f) {
251
return function (l) {
252
253
return l.slice().sort(function (x, y) {
254
return f(x)(y);
255
});
0 commit comments