ha-frontend-cdce8p/src/common/entity/compute_object_id.js
Paulus Schoutsen 34bfc12647
Prettier 💎 (#1737)
* Add prettier

* Apply Prettier
2018-10-11 12:22:11 +02:00

5 lines
148 B
JavaScript

/** Compute the object ID of a state. */
export default function computeObjectId(entityId) {
return entityId.substr(entityId.indexOf(".") + 1);
}