4 lines
98 B
JavaScript

export default function prepend(node, parent) {
parent.insertBefore(node, parent.firstChild);
}