citysys-terminal-web/src/util/isLocalhost.js

11 lines
369 B
JavaScript
Raw Normal View History

2024-04-15 19:28:54 +02:00
const isLocalhost = Boolean(
window.location.hostname === 'localhost' ||
// [::1] is the IPv6 localhost address.
window.location.hostname === '[::1]' ||
// 127.0.0.0/8 are considered localhost for IPv4.
window.location.hostname.match(
/^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/
)
);
export default isLocalhost;