summaryrefslogtreecommitdiff
path: root/std/uuid/mod.ts
diff options
context:
space:
mode:
authorunderfin <2218301630@qq.com>2020-04-27 20:49:34 +0800
committerGitHub <noreply@github.com>2020-04-27 08:49:34 -0400
commitdf0000ff0a3ce20292fe73b909cd31bd352d5266 (patch)
treec97fdab1bd238e7b551a6997f589c32c7ced1305 /std/uuid/mod.ts
parent516d970fd30cae6df071f6f2c8a980558b264438 (diff)
feat(std/uuid): Implement uuid v5 (#4916)
Diffstat (limited to 'std/uuid/mod.ts')
-rw-r--r--std/uuid/mod.ts6
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 };