Skip to content

Commit

Permalink
fixes peopleconnectus#4; removing the debug statements left in 'numbe…
Browse files Browse the repository at this point in the history
…r.js'.
  • Loading branch information
JasonCorns-Avalara committed Aug 28, 2018
1 parent 25187e6 commit 032cecb
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/comparators/number.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ module.exports = function () {
var toCheck = Array.isArray(checkVal) ? cloneDeep(checkVal) : [0, 0];
// short-cutting to 1x2 array of zeros. Will return false for mal-ormed requests.
debug('Evaluating "' + baseVal + '" falls between "' + JSON.stringify(toCheck) + '"');
debug('What is infinity, after all?' + Number.POSITIVE_INFINITY);
debug('What is infinity, after all?' + Number.NEGATIVE_INFINITY);
debug('What is infinity, after all?' + [Number.NEGATIVE_INFINITY, Number.POSITIVE_INFINITY]);
toCheck.push(baseVal);
toCheck.sort(numericSort);
return (baseVal === toCheck[1]);
Expand Down

0 comments on commit 032cecb

Please sign in to comment.