Skip to content

Instantly share code, notes, and snippets.

@MNBuyskih
Last active August 29, 2015 14:21
Show Gist options
  • Save MNBuyskih/345b20aadb7f5ae2c7ec to your computer and use it in GitHub Desktop.
Save MNBuyskih/345b20aadb7f5ae2c7ec to your computer and use it in GitHub Desktop.
underscorejs _.isNumeric() function. Src is jQuery.isNumeric() function.
function isNumeric (obj) {
return !_.isArray(obj) && (obj - parseFloat(obj) + 1) >= 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment