Files
wlan-cloud-ui/app/utils/environment.js
Sean Macfarlane b619cfe8b0 refactored
2020-03-11 17:55:42 -04:00

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;
}