| Current Path : /home/emeraadmin/public_html/node_modules/d3-selection/src/ |
| Current File : /home/emeraadmin/public_html/node_modules/d3-selection/src/selectorAll.js |
function empty() {
return [];
}
export default function(selector) {
return selector == null ? empty : function() {
return this.querySelectorAll(selector);
};
}