@minto-ai/tools 1.0.39 → 1.0.45
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/dist/array/chunk-array.d.ts +2 -3
- package/dist/browser/copy-text.d.ts +2 -3
- package/dist/browser/is-android.d.ts +3 -3
- package/dist/browser/is-ios.d.ts +1 -1
- package/dist/browser/is-mobile.d.ts +3 -4
- package/dist/browser/is-pc.d.ts +3 -3
- package/dist/core/be-parsed-as-number.d.ts +1 -1
- package/dist/core/can-be-parsed-as-number.d.ts +3 -3
- package/dist/core/check-array-empty.d.ts +3 -3
- package/dist/core/check-empty-not-zero.d.ts +3 -3
- package/dist/core/check-empty.d.ts +3 -4
- package/dist/core/check-object-empty.d.ts +2 -3
- package/dist/core/is-array.d.ts +3 -3
- package/dist/core/is-null-or-undefined.d.ts +3 -3
- package/dist/core/is-number.d.ts +3 -3
- package/dist/core/is-object.d.ts +4 -3
- package/dist/core/is-string.d.ts +3 -3
- package/dist/core/is-undefined.d.ts +3 -3
- package/dist/file/batch-download-file.d.ts +4 -3
- package/dist/file/extends/enum.d.ts +11 -1
- package/dist/file/get-file-icon.d.ts +3 -3
- package/dist/file/get-file-name.d.ts +3 -3
- package/dist/file/get-file-suffix-icon.d.ts +3 -3
- package/dist/file/get-file-suffix.d.ts +3 -3
- package/dist/file/get-file-title.d.ts +3 -3
- package/dist/file/index.d.ts +4 -3
- package/dist/file/is-compress-file-path.d.ts +8 -0
- package/dist/file/is-document-file-path.d.ts +3 -3
- package/dist/file/is-file-path.d.ts +3 -3
- package/dist/file/is-image-file-path.d.ts +3 -3
- package/dist/file/is-music-file-path.d.ts +3 -3
- package/dist/file/is-ppt-file-path.d.ts +3 -3
- package/dist/file/is-video-file-path.d.ts +3 -3
- package/dist/file/single-download-file.d.ts +4 -3
- package/dist/file/types/index.d.ts +3 -2
- package/dist/index.js +315 -328
- package/dist/string/object-to-query-string.d.ts +1 -3
- package/dist/supply/get-uuid.d.ts +1 -3
- package/dist/supply/time-delay.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
* 利用 Web Crypto API,生成一个随机的 32 位无符号整数,并将其转换为一个基于 36 进制的字符串。
|
|
4
|
-
* 这种格式的字符串通常用于标识,并且可以保证在很大范围内的唯一性。
|
|
2
|
+
* 利用 Web Crypto API,生成一个随机的 32 位无符号整数,并将其转换为一个基于 36 进制的字符串。这种格式的字符串通常用于标识,并且可以保证在很大范围内的唯一性。
|
|
5
3
|
*
|
|
6
4
|
* @returns 返回一个随机生成的 UUID 字符串。
|
|
7
5
|
*/
|