Skip to content

Instantly share code, notes, and snippets.

@Ynote
Created November 20, 2018 10:36
Show Gist options
  • Save Ynote/798021ebb7b433301005f5dbfd88f3ff to your computer and use it in GitHub Desktop.
Save Ynote/798021ebb7b433301005f5dbfd88f3ff to your computer and use it in GitHub Desktop.
import isPlainNumber from 'is-plain-number'
isPlainNumber('42') // => true
isPlainNumber('42.2') // => true
isPlainNumber('42e4') // => false
isPlainNumber('0x2a') // => false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment