UNPKG
@qelos/assets
Version:
latest (3.8.0)
3.8.0
3.7.4
3.7.3
manage assets like images and static files on remote servers
@qelos/assets
/
node_modules
/
@smithy
/
util-endpoints
/
dist-es
/
lib
/
isIpAddress.js
3 lines
(2 loc)
•
245 B
JavaScript
View Raw
1
2
3
const IP_V4_REGEX
=
new RegExp
(
`^(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}$`
)
; export const isIpAddress
=
(
value
)
=
>
IP_V4_REGEX.test
(
value
)
||
(
value.startsWith
(
"["
)
&&
value.endsWith
(
"]"
)
)
;