frontend/js/common/entity/compute_state_domain.js
Paulus Schoutsen 912969111f
Move all of hassUtil to JS (#1153)
* Move all of hassUtil to JS

* Fix tests
2018-05-09 21:33:31 -04:00

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