ascor
Version:
一些常用的简单的js工具
22 lines (21 loc) • 492 B
TypeScript
/**
* 校验正数值
* @param arg
* @return Boolean 返回布尔值
*/
declare const isPositiveNumber: {
(arg: any): boolean;
/**
* isPositiveNumber()的与运算
* @param arg 可传多个判断
* @return Boolean 返回布尔值
*/
all(...arg: any[]): Boolean;
/**
* isPositiveNumber()的或运算
* @param arg 可传多个判断
* @return Boolean 返回布尔值
*/
or(...arg: any[]): Boolean;
};
export { isPositiveNumber };