if(element instanceof Node) {
        this.parentNode.insertBefore(element, this.nextSibling);
      } else {
        const elements = element instanceof NodeList ? toArray(element) : element;
        forEach.call(elements.reverse(), after.bind(this));