UNPKG

dom-tools

Version:

A tiny collection of DOM helpers for IE8+.

10 lines (8 loc) 156 B
// IE8+ // // Snippet from: // http://youmightnotneedjquery.com/#append function append(parent, el) { parent.appendChild(el); } module.exports = append;