Created
November 28, 2014 11:15
-
-
Save kkoziarski/e7d91ecc5b0973427ee9 to your computer and use it in GitHub Desktop.
isNumber - The Good Parts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var isNumber = function isNumber(value) { | |
return typeof value === 'number' && isFinite(value); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment