biodome
Version:
Home automation you can live with
16 lines (12 loc) • 359 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;
};
};