diff options
Diffstat (limited to 'std/uuid/mod.ts')
-rw-r--r-- | std/uuid/mod.ts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/std/uuid/mod.ts b/std/uuid/mod.ts index 23d0c6410..7ffbb1349 100644 --- a/std/uuid/mod.ts +++ b/std/uuid/mod.ts @@ -2,6 +2,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import * as v1 from "./v1.ts"; import * as v4 from "./v4.ts"; +import * as v5 from "./v5.ts"; export const NIL_UUID = "00000000-0000-0000-0000-000000000000"; @@ -21,7 +22,4 @@ const NOT_IMPLEMENTED = { // TODO Implement export const v3 = NOT_IMPLEMENTED; -export { v1, v4 }; - -// TODO Implement -export const v5 = NOT_IMPLEMENTED; +export { v1, v4, v5 }; |