You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
249 B
17 lines
249 B
4 weeks ago
|
# 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'
|
||
|
```
|