isInt
Basic usage
Pass in a value and get a boolean telling you if the value is an int.
import { isInt } from 'radash'
isInt(12) // => trueisInt(12.233) // => falseisInt('hello') // => false
Pass in a value and get a boolean telling you if the value is an int.
import { isInt } from 'radash'
isInt(12) // => trueisInt(12.233) // => falseisInt('hello') // => false