Determines whether the specified value is the localhost.
isLocalhost(value)
returns boolean
Name | Type | Required | Default | Description |
---|---|---|---|---|
value | string | Yes | The value to check. |
isLocalHost("127.0.0.1")
Test the IPv6 Loopback address. IPv6 only has one loopback address.
isLocalHost("::1")
IPv4 network standards reserve the entire 127.0.0.0/8 address block for loopback networking purposes however they are not usually mapped to localhost
by default.
isLocalHost("127.8.8.8")
Not a localhost IP.
isLocalHost("8.8.8.8")