Test/node_modules/d3-selection/src/selectorAll.js
2026-04-09 22:54:00 +07:00

9 lines
171 B
JavaScript

function empty() {
return [];
}
export default function(selector) {
return selector == null ? empty : function() {
return this.querySelectorAll(selector);
};
}