4 lines
98 B
JavaScript
4 lines
98 B
JavaScript
|
export default function prepend(node, parent) {
|
||
|
parent.insertBefore(node, parent.firstChild);
|
||
|
}
|