diff options
author | Minteck <contact@minteck.org> | 2022-06-14 10:56:15 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-06-14 10:56:15 +0200 |
commit | ecb92e72778bb12b8875145650610617624c6530 (patch) | |
tree | 5774dd68fad42653cc4abe7d88e586ba5c4c39a3 /node_modules/uuid/wrapper.mjs | |
download | elac-ecb92e72778bb12b8875145650610617624c6530.tar.gz elac-ecb92e72778bb12b8875145650610617624c6530.tar.bz2 elac-ecb92e72778bb12b8875145650610617624c6530.zip |
Initial commit
Diffstat (limited to 'node_modules/uuid/wrapper.mjs')
-rw-r--r-- | node_modules/uuid/wrapper.mjs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/node_modules/uuid/wrapper.mjs b/node_modules/uuid/wrapper.mjs new file mode 100644 index 0000000..c31e9ce --- /dev/null +++ b/node_modules/uuid/wrapper.mjs @@ -0,0 +1,10 @@ +import uuid from './dist/index.js'; +export const v1 = uuid.v1; +export const v3 = uuid.v3; +export const v4 = uuid.v4; +export const v5 = uuid.v5; +export const NIL = uuid.NIL; +export const version = uuid.version; +export const validate = uuid.validate; +export const stringify = uuid.stringify; +export const parse = uuid.parse; |