std/uuid
2021-02-01 10:46:58 +00:00
..
_common.ts feat(uuid): Implement uuid v5 (denoland/deno#4916) 2021-02-01 10:46:57 +00:00
mod.ts remove stub implementation of v3 in uuid (denoland/deno#7488) 2021-02-01 10:46:58 +00:00
README.md docs(uuid): remove mention of v3 which is not supported (denoland/deno#7318) 2021-02-01 10:46:58 +00:00
test.ts feat(fmt): Sort named import and export specifiers (denoland/deno#7711) 2021-02-01 10:46:58 +00:00
v1_test.ts chore: add copyright (denoland/deno#7593) 2021-02-01 10:46:58 +00:00
v1.ts chore: add copyright (denoland/deno#7593) 2021-02-01 10:46:58 +00:00
v4_test.ts test(uuid): reorganize to use one test module per public module (denoland/deno#7272) 2021-02-01 10:46:58 +00:00
v4.ts chore: add copyright (denoland/deno#7593) 2021-02-01 10:46:58 +00:00
v5_test.ts test(uuid): reorganize to use one test module per public module (denoland/deno#7272) 2021-02-01 10:46:58 +00:00
v5.ts chore: add copyright (denoland/deno#7593) 2021-02-01 10:46:58 +00: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);