mirror of
https://github.com/home-assistant/frontend.git
synced 2025-06-24 19:16:34 +00:00
5 lines
152 B
JavaScript
5 lines
152 B
JavaScript
/** Get the location name from a hass object. */
|
|
export default function computeLocationName(hass) {
|
|
return hass && hass.config.core.location_name;
|
|
}
|