FabienDanieau's picture
first commit
2434dca
raw
history blame
168 Bytes
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.cloneNode = cloneNode;
function cloneNode(n) {
return Object.assign({}, n);
}