Initial commit

This commit is contained in:
pasketti
2026-04-05 16:14:49 -04:00
commit ebee3a5534
14059 changed files with 2588797 additions and 0 deletions

11
node_modules/d3-selection/src/selection/clone.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
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);
}