UNPKG
dom-tools
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
A tiny collection of DOM helpers for IE8+.
github.com/dennisduong/dom-tools
dennisduong/dom-tools
dom-tools
/
src
/
clone.js
9 lines
(7 loc)
•
145 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// IE8+
//
// http://youmightnotneedjquery.com/#clone
function
clone
(
/* Element */
el)
{
return
el.cloneNode(
true
); }
module
.
exports
= clone;