mirror of
https://github.com/home-assistant/frontend.git
synced 2025-06-30 22:16:35 +00:00
4 lines
94 B
JavaScript
4 lines
94 B
JavaScript
export default function validEntityId(entityId) {
|
|
return /^(\w+)\.(\w+)$/.test(entityId);
|
|
}
|