Files
blowfish/node_modules/d3-selection/src/matcher.js
Nuno Coração 5fb4bd8083 config redirect
2023-01-29 22:30:24 +00:00

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);
};
}