Sha256: 0b54211faee0ac8a764e0788ae7f8952c1fc679869bdb68e5241f8f14c6551d3

Contents?: true

Size: 199 Bytes

Versions: 3

Compression:

Stored size: 199 Bytes

Contents

"use strict";

class ChildNodeImpl {
  remove() {
    if (!this.parentNode) {
      return;
    }

    this.parentNode.removeChild(this);
  }
}

module.exports = {
  implementation: ChildNodeImpl
};

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
learn_create-0.0.22 lib/templates/javascript_lab_template/node_modules/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js
lanes-0.8.0 node_modules/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js
select_all-rails-0.3.1 node_modules/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js