Files
OrgTree/node_modules/d3-selection/src/selection/remove.js
2024-03-08 11:23:47 +05:30

9 lines
153 B
JavaScript

function remove() {
var parent = this.parentNode;
if (parent) parent.removeChild(this);
}
export default function() {
return this.each(remove);
}