Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Ynote/f12f15dd466da2bd912241897f4c13b8 to your computer and use it in GitHub Desktop.
Save Ynote/f12f15dd466da2bd912241897f4c13b8 to your computer and use it in GitHub Desktop.
import isPlainNumber from 'is-plain-number'
import isStringANumber from 'is-string-a-number'
isPlainNumber('42') // true
isStringANumber('42') // true
isPlainNumber('42e4') // false
isStringANumber('42e4') // false
isPlainNumber(42e4) // true
isStringANumber(42e4) // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment