* Add automation editor * Build JS before running tests * Add browser warning * Re-order from/to in state
4 lines
86 B
JavaScript
4 lines
86 B
JavaScript
export function validEntityId(entityId) {
|
|
return /^(\w+)\.(\w+)$/.test(entityId);
|
|
}
|