Files
ccc-obfuscated-code/node_modules/chance/docs/web/email.md
Pipi Chen b8a3516cd6 update
2020-05-07 01:02:44 +08:00

22 lines
334 B
Markdown

# 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'
```