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