mirror of
https://github.com/home-assistant/frontend.git
synced 2025-06-24 19:16:34 +00:00
5 lines
175 B
JavaScript
5 lines
175 B
JavaScript
/** Return if a component is loaded. */
|
|
export default function isComponentLoaded(hass, component) {
|
|
return hass && hass.config.core.components.indexOf(component) !== -1;
|
|
}
|