-
-
Notifications
You must be signed in to change notification settings - Fork 905
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This reverts commit 2a18871.
- Loading branch information
Showing
2 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import * as uuid from './dist/esm/index.js'; | ||
export const v1 = uuid.v1; | ||
export const v1ToV6 = uuid.v1ToV6; | ||
export const v3 = uuid.v3; | ||
export const v4 = uuid.v4; | ||
export const v5 = uuid.v5; | ||
export const v6 = uuid.v6; | ||
export const v6ToV1 = uuid.v6ToV1; | ||
export const v7 = uuid.v7; | ||
export const NIL = uuid.NIL; | ||
export const MAX = uuid.MAX; | ||
export const version = uuid.version; | ||
export const validate = uuid.validate; | ||
export const stringify = uuid.stringify; | ||
export const parse = uuid.parse; |