Skip to content

Commit ebcfcc3

Browse files
authored
Merge pull request #133 from matthewleon/remove-jshint-comments
remove jshint comments
2 parents 32a1a20 + 743e927 commit ebcfcc3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/Data/Array.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ exports.replicate = typeof Array.prototype.fill === "function" ?
4545
replicatePolyfill;
4646

4747
exports.fromFoldableImpl = (function () {
48-
// jshint maxparams: 2
4948
function Cons(head, tail) {
5049
this.head = head;
5150
this.tail = tail;
@@ -249,7 +248,6 @@ exports.partition = function (f) {
249248

250249
exports.sortImpl = function (f) {
251250
return function (l) {
252-
// jshint maxparams: 2
253251
return l.slice().sort(function (x, y) {
254252
return f(x)(y);
255253
});

0 commit comments

Comments
 (0)