biodome
Version:
Home automation you can live with
17 lines (13 loc) • 373 B
JavaScript
// Decide if a command should be executed by an endpoint
;
module.exports = function matcherFor(endpoint) {
return function commandMatcher(command) {
if (command.selector.id) {
return command.selector.id === endpoint.id;
}
if (command.selector.type) {
return command.selector.type === endpoint.type;
}
return false;
};
};