summaryrefslogtreecommitdiff
path: root/src/node_modules/chance/docs/miscellaneous/guid.md
blob: 4156708e9ddcdb22af320925910234c3555afeb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# guid

```js
// usage
chance.guid()
chance.guid({version: 5})
```

Return a random guid, version 5 by default.

```js
chance.guid();
=> 'f0d8368d-85e2-54fb-73c4-2d60374295e3'
chance.guid({version: 4});
=> 'c71f58e3-34af-43c0-b405-2764d6947d21'
```