English
Appearance
Determine whether the input value is a number or a numeric string.
number
numeric string
import { isNumeric } from 'rattail' isNumeric(123) // return true isNumeric('456') // return true isNumeric('rattail') // return false
value
any
boolean