summaryrefslogtreecommitdiff
path: root/std/uuid/README.md
blob: 513a6ed535f7a5986d9300f117406db4051d97ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# UUID

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

## Usage

```ts
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);
```