UNPKG

d3

Version:

A small, free JavaScript library for manipulating documents based on data.

10 lines (9 loc) 235 B
// TODO remove(selector)? // TODO remove(node)? // TODO remove(function)? d3_selectionPrototype.remove = function() { return this.each(function() { var parent = this.parentNode; if (parent) parent.removeChild(this); }); };