source: node_modules/d3-selection/src/selection/remove.js

Last change on this file was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 153 bytes
Line 
1function remove() {
2 var parent = this.parentNode;
3 if (parent) parent.removeChild(this);
4}
5
6export default function() {
7 return this.each(remove);
8}
Note: See TracBrowser for help on using the repository browser.