Skip to content

Commit 62ecbf4

Browse files
committed
Merge pull request jashkenas#2260 from JonAbrams/master
Fixes out of date comment on _.isNaN
2 parents 0b16f58 + 0baa807 commit 62ecbf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

underscore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1299,7 +1299,7 @@
12991299
return isFinite(obj) && !isNaN(parseFloat(obj));
13001300
};
13011301

1302-
// Is the given value `NaN`? (NaN is the only number which does not equal itself).
1302+
// Is the given value `NaN`?
13031303
_.isNaN = function(obj) {
13041304
return _.isNumber(obj) && isNaN(obj);
13051305
};

0 commit comments

Comments
 (0)