-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,12 +11,20 @@ String validator for more. | |
|
||
## Usage | ||
|
||
### Node.js | ||
|
||
``` | ||
var validator = require('is-valid'); | ||
validator.isEmail('[email protected]'); // => true | ||
``` | ||
|
||
### Validators | ||
|
||
- isEmail(str): check if it is an Email string | ||
- isAllChinese(str): check if it is a string only contains Chinese characters | ||
- isAllEnglish(str): check if it is a string only contains English characters | ||
- isAllDigit(str): check if it is a string only contains digits | ||
- isChineseTel(str): check if it is a Chinese cell-phone number | ||
|
||
## License | ||
|
||
The MIT License |