1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-21 19:28:46 +00:00
Files
frontend/js/editor/util.js
2017-07-16 23:31:19 -07:00

4 lines
86 B
JavaScript

export function validEntityId(entityId) {
return /^(\w+)\.(\w+)$/.test(entityId);
}