# is-it-email

> strict email validator

Latest version **1.0.1** (published 2022-04-10) · MIT license · 0 weekly downloads

## Install

```sh
npm install is-it-email
pnpm add is-it-email
yarn add is-it-email
bun add is-it-email
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2022-04-10 |
| First published | 2022-04-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 8.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Anatoly Shlom |
| Maintainers | ashlom |
| Keywords | RFC-5322, EMAIL, VALIDATOR, VALIDATION, RFC, 5322 |

## Links

- npm: https://www.npmjs.com/package/is-it-email
- Repository: https://github.com/AMSHL/is-it-email
- Homepage: https://github.com/AMSHL/is-it-email#readme
- Issues: https://github.com/AMSHL/is-it-email/issues
- npm.io page: https://npm.io/package/is-it-email

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2022-04-10
- 1.0.0 — 2022-04-10

## README

# is-it-email
Strict RFC 5322 Email validator 

Install:

```
npm i is-it-email
```

Usage example:

```javascript
import { validate } from 'is-it-email';

const isEmail = validate('anyRFC_5322@valid.email.com'); //true

//in case you need remove comment from string you can use
import { removeComment } from 'is-it-email';

const emailWithComment='(comment)myperfect(comment)@(comment)email.com(comment)';

const isEmail = validate(emailWithComment); // true, according to RFC-5322

const email = removeComment(emailWithComment) // myperfect@email.com

---
_Source: https://npm.io/package/is-it-email · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
