UNPKG

dom-tools

Version:

A tiny collection of DOM helpers for IE8+.

9 lines (7 loc) 145 B
// IE8+ // // http://youmightnotneedjquery.com/#clone function clone(/* Element */ el) { return el.cloneNode(true); } module.exports = clone;