UNPKG
@mm-custom/regexp
Version:
latest (2.0.0)
2.0.0
1.0.1
1.0.0
正则表达式库
@mm-custom/regexp
/
typings
/
number.d.ts
7 lines
(6 loc)
•
224 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** 正整数 */
export
declare
const
positiveIntegerReg
:
RegExp
;
/** 自然数 */
export
declare
const
naturalNumberReg
:
RegExp
;
/** 非零开头的数字(包含小数) */
export
declare
const
nonZeroNumberReg
:
RegExp
;