Files
OrgTree/node_modules/d3-selection/src/matcher.js
2025-08-27 09:55:23 +05:30

13 lines
211 B
JavaScript

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