Skip to content

Commit aca1b1c

Browse files
committed
Fixing typo errors in documentation.
1 parent aa8b526 commit aca1b1c

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# IRCHECK
2-
IRCHECK is a Node.js validation library developed for Iranian developers in order to help them to do some validations on their specific national data.
1+
# IRCheck
2+
IRCheck is a Node.js validation library developed for Iranian developers in order to help them to do some validations on their specific national data.
33

44
## Install & Usage
55
You can install the package via the following command:
6+
67
`npm install ircheck`
78

89
### Usage
@@ -14,12 +15,12 @@ const IRCheck = require('ircheck');
1415
Then you can use the available methods for different available validators:
1516
```javascript
1617
IRCheck.Phone.checkType('02191001848'); //returns 'LANDLINE'
17-
IRCheck.Phone.normalizeMobile('+989121234567'); // returns '91234567'
18+
IRCheck.Phone.normalizeMobile('+989121234567'); // returns '9121234567'
1819
```
1920

2021
## Validators Availability
2122
Currently, the following validators are available:
22-
* [Iranian Phone Numbers](#phone)
23+
* [Iran Phone Numbers](#phone)
2324

2425
### Phone
2526
Here’s a list of available methods:
@@ -32,6 +33,9 @@ Here’s a list of available methods:
3233
* `getProvincesFromLandline(number)` Extract province data from a landline numbers
3334

3435
## History
36+
### 0.1.1
37+
* Fixing typo errors in README.md file.
38+
3539
### 0.1.0
3640
* Initial release
3741

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ircheck",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Node.js validation library for Iranian developers",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)