Commit 3b26f0a 1 parent 2a18871 commit 3b26f0a Copy full SHA for 3b26f0a
File tree 2 files changed +18
-2
lines changed
2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 29
29
"node" : {
30
30
"module" : " ./dist/esm/index.js" ,
31
31
"require" : " ./dist/cjs/index.js" ,
32
- "import" : " ./dist/esm/index.js "
32
+ "import" : " ./wrapper.mjs "
33
33
},
34
34
"browser" : {
35
35
"import" : " ./dist/esm-browser/index.js" ,
49
49
" CONTRIBUTING.md" ,
50
50
" LICENSE.md" ,
51
51
" README.md" ,
52
- " dist"
52
+ " dist" ,
53
+ " wrapper.mjs"
53
54
],
54
55
"devDependencies" : {
55
56
"@babel/eslint-parser" : " 7.25.9" ,
Original file line number Diff line number Diff line change
1
+ import * as uuid from './dist/esm/index.js' ;
2
+ export const v1 = uuid . v1 ;
3
+ export const v1ToV6 = uuid . v1ToV6 ;
4
+ export const v3 = uuid . v3 ;
5
+ export const v4 = uuid . v4 ;
6
+ export const v5 = uuid . v5 ;
7
+ export const v6 = uuid . v6 ;
8
+ export const v6ToV1 = uuid . v6ToV1 ;
9
+ export const v7 = uuid . v7 ;
10
+ export const NIL = uuid . NIL ;
11
+ export const MAX = uuid . MAX ;
12
+ export const version = uuid . version ;
13
+ export const validate = uuid . validate ;
14
+ export const stringify = uuid . stringify ;
15
+ export const parse = uuid . parse ;
You can’t perform that action at this time.
0 commit comments