mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-07-02 08:25:41 +08:00
22 lines
334 B
Markdown
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'
|
|
```
|