From f457ff9157c845db08accd5905a2c1cbd7762b39 Mon Sep 17 00:00:00 2001 From: Casper Beyer Date: Tue, 15 Sep 2020 12:12:45 +0800 Subject: remove stub implementation of v3 in std/uuid (#7488) --- std/uuid/mod.ts | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'std/uuid') 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 }; -- cgit v1.2.3