mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
08087e921e
Original:
|
||
---|---|---|
.. | ||
tests | ||
mod.ts | ||
README.md | ||
test.ts | ||
v4.ts |
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);