UNPKG

dom-tools

Version:

A tiny collection of DOM helpers for IE8+.

9 lines (7 loc) 190 B
// IE8+ // // http://youmightnotneedjquery.com/#prepend function prepend(/* Element */ parent, /* Element */ el) { parent.insertBefore(el, parent.firstChild); } module.exports = prepend;