Skip to content

Commit f31de6a

Browse files
author
Jim Palmer
committed
revert console log
1 parent cc53090 commit f31de6a

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

naturalSort.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ function naturalSort (a, b) {
3535
for(var cLoc=0, xNl = xN.length, yNl = yN.length, numS=Math.max(xNl, yNl); cLoc < numS; cLoc++) {
3636
oFxNcL = normChunk(xN[cLoc], xNl);
3737
oFyNcL = normChunk(yN[cLoc], yNl);
38-
console.log(oFxNcL, oFyNcL)
3938
// handle numeric vs string comparison - number < string - (Kyle Adams)
4039
if (isNaN(oFxNcL) !== isNaN(oFyNcL)) { return (isNaN(oFxNcL)) ? 1 : -1; }
4140
// rely on string comparison if different types - i.e. '02' < 2 != '02' < '2'

0 commit comments

Comments
 (0)