deno/std/uuid
2020-09-01 19:18:40 -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 docs(std/uuid): remove mention of v3 which is not supported (#7318) 2020-09-01 19:18:40 -04:00
test.ts test(std/uuid): reorganize to use one test module per public module (#7272) 2020-08-30 14:39:51 -04:00
v1.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
v1_test.ts test(std/uuid): reorganize to use one test module per public module (#7272) 2020-08-30 14:39:51 -04:00
v4.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -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 refactor(std/uuid): remove dependency on isString from std/node (#7273) 2020-08-30 22:46:58 +02: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);