Skip to content

Instantly share code, notes, and snippets.

@kkoziarski
Created November 28, 2014 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkoziarski/e7d91ecc5b0973427ee9 to your computer and use it in GitHub Desktop.
Save kkoziarski/e7d91ecc5b0973427ee9 to your computer and use it in GitHub Desktop.
isNumber - The Good Parts
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