Files
RoboCommander/node_modules/d3-selection/src/selectAll.js

8 lines
282 B
JavaScript
Raw Normal View History

2026-04-05 16:14:49 -04:00
import {Selection, root} from "./selection/index";
export default function(selector) {
return typeof selector === "string"
? new Selection([document.querySelectorAll(selector)], [document.documentElement])
: new Selection([selector == null ? [] : selector], root);
}