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

12 lines
343 B
JavaScript
Raw Normal View History

2026-04-05 16:14:49 -04:00
function selection_cloneShallow() {
return this.parentNode.insertBefore(this.cloneNode(false), this.nextSibling);
}
function selection_cloneDeep() {
return this.parentNode.insertBefore(this.cloneNode(true), this.nextSibling);
}
export default function(deep) {
return this.select(deep ? selection_cloneDeep : selection_cloneShallow);
}