deno/std/uuid
2020-06-12 15:23:38 -04:00
..
tests refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
_common.ts feat(std/uuid): Implement uuid v5 (#4916) 2020-04-27 08:49:34 -04:00
mod.ts feat(std/uuid): Implement uuid v5 (#4916) 2020-04-27 08:49:34 -04:00
README.md typo (#5948) 2020-05-30 00:58:12 -04:00
test.ts feat(std/uuid): Implement uuid v5 (#4916) 2020-04-27 08:49:34 -04:00
v1.ts Implement UUID v1 (#4758) 2020-04-15 10:38:05 -04:00
v4.ts Implement UUID v1 (#4758) 2020-04-15 10:38:05 -04:00
v5.ts refactor(std): remove testing dependencies from non-test code (#5838) 2020-06-07 09:20:33 -04:00

UUID

Support for version 1, 3, 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);