UNPKG
rh-regexp
Version:
latest (1.0.0)
1.0.0
0.0.3
0.0.2
0.0.1
```shell npm install rh-regexp ```
rh-regexp
/
src
/
validation
/
special.ts
9 lines
(6 loc)
•
103 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
/** * 必填 */
export
function
required
(str: string)
: boolean {
return
str.length >
0
}