UNPKG

dom-tools

Version:

A tiny collection of DOM helpers for IE8+.

10 lines (8 loc) 169 B
// IE8+ // // Snippet from: // http://youmightnotneedjquery.com/#remove function remove(/* Element */ el) { el.parentNode.removeChild(el); } module.exports = remove;