supercat666's picture
fixed igv
1df763a
raw
history blame
185 Bytes
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.cloneNode = cloneNode;
function cloneNode(n) {
// $FlowIgnore
return Object.assign({}, n);
}