An open API service indexing awesome lists of open source software.

https://github.com/faker-javascript/email

Email package provides functionality to generate a fake email value.
https://github.com/faker-javascript/email

Last synced: 3 months ago
JSON representation

Email package provides functionality to generate a fake email value.

Awesome Lists containing this project

README

        

Email


Email package provides functionality to generate a fake email value.


Version node-current License

## Install

npm
```
npm install @fakerjs/email --save-dev
```

yarn
```
yarn add @fakerjs/email -D
```

## Usage

```js
import email from '@fakerjs/email';

email();
//=> [email protected]

email({domain: 'example.com'})
//=> [email protected]
```

## Tests

Run tests

```
npm run test
```

## License
[The MIT License (MIT)](https://github.com/faker-javascript/email/blob/master/LICENSE)
Copyright (c) [Sergey Romanenko](https://github.com/Awilum)