UNPKG
ircheck
Version:
latest (0.3.6)
0.3.6
0.3.0
0.1.1
Node.js validation library for Iranian developers
github.com/DevRoomOrg/ircheck
DevRoomOrg/ircheck
ircheck
/
index.js
12 lines
(8 loc)
•
284 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
Phone
=
require
(
'./phone'
);
const
Postal
=
require
(
'./postal'
);
const
National
=
require
(
'./national'
);
const
IRCheck
=
function
(
) {};
IRCheck
.
prototype
.
Phone
=
Phone
;
IRCheck
.
prototype
.
Postal
=
Postal
;
IRCheck
.
prototype
.
National
=
National
;
module
.
exports
=
new
IRCheck
();