Welcome to mirror list, hosted at ThFree Co, Russian Federation.

wrapper.mjs « uuid « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c31e9cef45e2b96a11ded81ac2170391022dc2f6 (plain)
1
2
3
4
5
6
7
8
9
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;