mirror of
https://github.com/tauri-apps/deno.git
synced 2026-02-05 19:21:18 +01:00
and update to prettier 1.19 Also, update `assert()` and remove not null assertions where possibly in `cli`. Closes #3273
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);