mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
1eecc5c7d0
* Prepend underscores to private modules * Remove collectUint8Arrays() It would be a misuse of Deno.iter()'s result. * Move _util/async.ts to async * Move util/sha*.ts to hash |
||
---|---|---|
.. | ||
tests | ||
_common.ts | ||
mod.ts | ||
README.md | ||
test.ts | ||
v1.ts | ||
v4.ts | ||
v5.ts |
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(aString);