deno/std/uuid
2020-07-14 15:24:17 -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 Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
v4.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
v5.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -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);