deno/std/uuid
2020-09-27 12:22:32 +02:00
..
_common.ts feat(std/uuid): Implement uuid v5 (#4916) 2020-04-27 08:49:34 -04:00
mod.ts remove stub implementation of v3 in std/uuid (#7488) 2020-09-15 00:12:45 -04:00
README.md docs(std/uuid): remove mention of v3 which is not supported (#7318) 2020-09-01 19:18:40 -04:00
test.ts feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
v1.ts chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
v1_test.ts chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
v4.ts chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
v4_test.ts test(std/uuid): reorganize to use one test module per public module (#7272) 2020-08-30 14:39:51 -04:00
v5.ts chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
v5_test.ts test(std/uuid): reorganize to use one test module per public module (#7272) 2020-08-30 14:39:51 -04:00

UUID

Support for version 1, 4, and 5 UUIDs.

Usage

import { v4 } from "https://deno.land/std/uuid/mod.ts";

// Generate a v4 uuid
const myUUID = v4.generate();

// Validate a v4 uuid
const isValid = v4.validate(myUUID);