FLUJOS/BACK_BACK/node_modules/d3-selection/src/matcher.js
2025-11-07 00:06:12 +01:00

12 lines
211 B
JavaScript
Executable file

export default function(selector) {
return function() {
return this.matches(selector);
};
}
export function childMatcher(selector) {
return function(node) {
return node.matches(selector);
};
}