Skip to content

Instantly share code, notes, and snippets.

@forl
Created July 22, 2017 17:34
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 forl/db33f97a3904f7c1adcca9bc10305f50 to your computer and use it in GitHub Desktop.
Save forl/db33f97a3904f7c1adcca9bc10305f50 to your computer and use it in GitHub Desktop.
isNumber
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