util-helpers 5.8.0 → 5.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/util-helpers.js +86 -682
- package/dist/util-helpers.js.map +1 -1
- package/dist/util-helpers.min.js +1 -1
- package/dist/util-helpers.min.js.map +1 -1
- package/esm/VERSION.js +1 -1
- package/esm/isIdCard.js +3 -3
- package/esm/randomString.js +4 -1
- package/lib/VERSION.js +1 -1
- package/lib/isIdCard.js +3 -3
- package/lib/randomString.js +4 -1
- package/package.json +4 -4
- package/types/isIdCard.d.ts +1 -1
- package/types/randomString.d.ts +12 -2
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
## 使用
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### es/cjs
|
|
10
10
|
|
|
11
11
|
安装依赖
|
|
12
12
|
|
|
@@ -22,7 +22,7 @@ yarn add util-helpers
|
|
|
22
22
|
pnpm add util-helpers
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
###
|
|
25
|
+
### browser
|
|
26
26
|
|
|
27
27
|
如果你的项目使用的是原生方式开发,可以在浏览器中使用 `script` 标签直接引入文件,并使用全局变量 `utilHelpers` 。
|
|
28
28
|
|