diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-10-09 17:18:08 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-10-09 17:18:08 -0400 |
commit | 28293acd9c12a94f5d769706291032e844c7b92b (patch) | |
tree | 1fec6a3cd8d7c9e8bc9b1486f5c8438eb906a595 /std/uuid/mod.ts | |
parent | 5c6835efd82c298df99ce71c4a36ca23515333a3 (diff) | |
parent | 151ce0266eb4de2c8fc600c81c192a5f791b6169 (diff) |
Merge branch 'std_modified' into merge_std3
Diffstat (limited to 'std/uuid/mod.ts')
-rw-r--r-- | std/uuid/mod.ts | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/std/uuid/mod.ts b/std/uuid/mod.ts new file mode 100644 index 000000000..64ca45385 --- /dev/null +++ b/std/uuid/mod.ts @@ -0,0 +1,26 @@ +// Based on https://github.com/kelektiv/node-uuid +// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. + +export const NIL_UUID = "00000000-0000-0000-0000-000000000000"; + +export function isNil(val: string): boolean { + return val === NIL_UUID; +} + +const NOT_IMPLEMENTED = (): void => { + throw new Error("Not implemented"); +}; + +// TODO Implement +export const v1 = NOT_IMPLEMENTED; +// TODO Implement +export const v3 = NOT_IMPLEMENTED; + +import _v4 from "./v4.ts"; +export const v4 = _v4; + +// TODO Implement +export const v5 = NOT_IMPLEMENTED; + +export default v4; +export * from "./v4.ts"; |