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:
parent
055dfe2ff4
commit
f457ff9157
1 changed files with 0 additions and 12 deletions
|
@ -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 };
|
||||||
|
|
Loading…
Reference in a new issue