主题
是否为整数。
整数
传入一个值,如果是整数则返回true,否则返回false。
true
false
import { isInt } from '@renzp/utils'; isInt(1); // true isInt(1.2); // false
T
boolean