Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 243 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 243 Bytes

UUID

Support for version 1, 3, 4, and 5 UUIDs.

Usage

import uuid, { validate } from "https://deno.land/std/uuid/mod.ts";

// Generate a v4 uuid
const myUUID = uuid();

// Validate a v4 uuid
const isValid = validate(aString);