UNPKG
poweroff-tool
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.1-3
1.0.1-2
1.0.0
This is application which power off a pc when it triggered
bitbucket.org/vominhtan/poweroff-tool
poweroff-tool
/
src
/
utils
/
validators.js
6 lines
(4 loc)
•
178 B
JavaScript
View Raw
1
2
3
4
5
6
const
IP_REGEX
=
/^(?:(?:
25
[
0
-
5
]|
2
[
0
-
4
][
0
-
9
]|[
01
]?[
0
-
9
][
0
-
9
]?)\.){
3
}(?:
25
[
0
-
5
]|
2
[
0
-
4
][
0
-
9
]|[
01
]?[
0
-
9
][
0
-
9
]?)$/;
module
.
exports
= { validateIP: IP_REGEX.test.bind(IP_REGEX), }