site/node_modules/d3-selection/src/selector.js
2024-10-14 08:09:33 +02:00

7 lines
152 B
JavaScript

function none() {}
export default function(selector) {
return selector == null ? none : function() {
return this.querySelector(selector);
};
}