Skip to content

Instantly share code, notes, and snippets.

@wesleybliss
Created December 17, 2020 15:04
Show Gist options
  • Save wesleybliss/7c9bb8dcdcc8885a53aa546e6c044ffc to your computer and use it in GitHub Desktop.
Save wesleybliss/7c9bb8dcdcc8885a53aa546e6c044ffc to your computer and use it in GitHub Desktop.
isNumeric #js
export const isNumeric = n =>
!(isNaN(n)) && (typeof n !== 'object') &&
(n != Number.POSITIVE_INFINITY) && (n != Number.NEGATIVE_INFINITY)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment