Skip to main content
Module

std/uuid/mod.ts

Deno standard library
Go to Latest
File
// Based on https://github.com/kelektiv/node-uuid// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.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 Implementexport const v1 = NOT_IMPLEMENTED;// TODO Implementexport const v3 = NOT_IMPLEMENTED;
export { v4 };
// TODO Implementexport const v5 = NOT_IMPLEMENTED;