mirror of
https://github.com/home-assistant/frontend.git
synced 2025-06-25 11:36:35 +00:00
10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
import computeDomain from './compute_domain.js';
|
|
|
|
export default function computeStateDomain(stateObj) {
|
|
if (!stateObj._domain) {
|
|
stateObj._domain = computeDomain(stateObj.entity_id);
|
|
}
|
|
|
|
return stateObj._domain;
|
|
}
|