summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--std/uuid/mod.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/std/uuid/mod.ts b/std/uuid/mod.ts
index 7ffbb1349..61b10e895 100644
--- a/std/uuid/mod.ts
+++ b/std/uuid/mod.ts
@@ -10,16 +10,4 @@ export function isNil(val: string): boolean {
return val === NIL_UUID;
}
-const NOT_IMPLEMENTED = {
- generate(): never {
- throw new Error("Not implemented");
- },
- validate(): never {
- throw new Error("Not implemented");
- },
-};
-
-// TODO Implement
-export const v3 = NOT_IMPLEMENTED;
-
export { v1, v4, v5 };