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.
22 lines
334 B
22 lines
334 B
4 months ago
|
# email
|
||
|
|
||
|
```js
|
||
|
// usage
|
||
|
chance.email()
|
||
|
chance.email({domain: "example.com"})
|
||
|
```
|
||
|
|
||
|
Return a random email with a random domain.
|
||
|
|
||
|
```js
|
||
|
chance.email()
|
||
|
=> 'kawip@piklojzob.gov'
|
||
|
```
|
||
|
|
||
|
Optionally specify a domain and the email will be random but the domain will not.
|
||
|
|
||
|
```js
|
||
|
chance.email({domain: 'example.com'})
|
||
|
=> 'giigjom@example.com'
|
||
|
```
|