std/uuid
2021-02-01 10:46:57 +00:00
..
tests Use ts-expect-error instead of ts-ignore. (denoland/deno#5869) 2021-02-01 10:46:57 +00:00
_common.ts feat(uuid): Implement uuid v5 (denoland/deno#4916) 2021-02-01 10:46:57 +00:00
mod.ts feat(uuid): Implement uuid v5 (denoland/deno#4916) 2021-02-01 10:46:57 +00:00
README.md typo (denoland/deno#5948) 2021-02-01 10:46:57 +00:00
test.ts feat(uuid): Implement uuid v5 (denoland/deno#4916) 2021-02-01 10:46:57 +00:00
v1.ts Implement UUID v1 (denoland/deno#4758) 2021-02-01 10:46:57 +00:00
v4.ts Implement UUID v1 (denoland/deno#4758) 2021-02-01 10:46:57 +00:00
v5.ts BREAKING: reorganization (denoland/deno#5087) 2021-02-01 10:46:57 +00: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);