1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-23 07:44:48 -05:00

remove stub implementation of v3 in std/uuid (#7488)

This commit is contained in:
Casper Beyer 2020-09-15 12:12:45 +08:00 committed by GitHub
parent 055dfe2ff4
commit f457ff9157
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,16 +10,4 @@ export function isNil(val: string): boolean {
return val === NIL_UUID; 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 }; export { v1, v4, v5 };