UNPKG

d3-selection

Version:

Data-driven DOM manipulation: select elements and join them to data.

10 lines (8 loc) 171 B
function empty() { return []; } export default function(selector) { return selector == null ? empty : function() { return this.querySelectorAll(selector); }; }