UNPKG
uuid-core
Version:
latest (1.0.0)
1.0.0
A simple UUID generator library for Node.js, NestJS, and Next.js
uuid-core
/
dist
/
uuid-v4.js
5 lines
(4 loc)
•
87 B
JavaScript
View Raw
1
2
3
4
5
import
{ randomUUID }
from
"crypto"
;
export
function
v4
(
) {
return
randomUUID
(); }