UNPKG
@mt-kit/utils
Version:
latest (1.7.0)
1.7.0
1.6.0
1.5.1
1.5.0
1.4.0
1.3.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
一个常用的工具库
not-have.github.io/micro-tools/
Not-have/micro-tools
@mt-kit/utils
/
dist
/
uuid
/
index.d.ts
15 lines
(14 loc)
•
375 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
*
生成唯一的 ID
*
* 融合完整毫秒级时间戳的 UUID v4
*
使用复杂的混合策略确保开头随机性
*
时间戳占前11位,确保毫秒级精度
*
* @returns 包含完整时间戳信息的唯一 ID 字符串
*
@example
*
```typescript * uuid() // "a1b2c3d4e5f6-7890-abcd-ef12-345678901234" * ```
*/ export default function uuid(): string;