1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/std/uuid/mod.ts
2020-04-15 10:38:05 -04:00

27 lines
620 B
TypeScript

// Based on https://github.com/kelektiv/node-uuid
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import * as v1 from "./v1.ts";
import * as v4 from "./v4.ts";
export const NIL_UUID = "00000000-0000-0000-0000-000000000000";
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 };
// TODO Implement
export const v5 = NOT_IMPLEMENTED;