void insertAllBefore(element, nodes)

Source

void insertAllBefore(element, nodes) {
  Element el = element;
  el.parentNode.insertAllBefore(nodes, el);
}