mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui.git
synced 2025-11-02 11:47:51 +00:00
10 lines
229 B
JavaScript
10 lines
229 B
JavaScript
/* global location */
|
|
/* eslint no-restricted-globals: ["error", "event"] */
|
|
|
|
export function isLocalhost() {
|
|
if (location.hostname === 'localhost' || location.hostname === '127.0.0.1') {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|