主题
确定一个值是否为整数。
传入一个值,获取一个布尔值,告诉你该值是否为整数。
import { isInt } from 'radash' isInt(12) // => true isInt(12.233) // => false isInt('hello') // => false