diff options
author | Casper Beyer <caspervonb@pm.me> | 2020-09-15 12:12:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-15 00:12:45 -0400 |
commit | f457ff9157c845db08accd5905a2c1cbd7762b39 (patch) | |
tree | 66da21e36e956f460b1fa4b8c75cee4fc06c8ecf | |
parent | 055dfe2ff437099aef105fe4beab0f0c8cc53506 (diff) |
remove stub implementation of v3 in std/uuid (#7488)
-rw-r--r-- | std/uuid/mod.ts | 12 |
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 }; |