Leon4gr45's picture
Upload folder using huggingface_hub (part 8)
e7b2eb4 verified
Raw
History Blame Contribute Delete
289 Bytes
import "selection";
// TODO remove(selector)?
// TODO remove(node)?
// TODO remove(function)?
d3_selectionPrototype.remove = function() {
return this.each(d3_selectionRemove);
};
function d3_selectionRemove() {
var parent = this.parentNode;
if (parent) parent.removeChild(this);
}