mirror of https://github.com/jkjoy/sunpeiwen.git
11 lines
185 B
JavaScript
11 lines
185 B
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.cloneNode = cloneNode;
|
||
|
|
||
|
function cloneNode(n) {
|
||
|
// $FlowIgnore
|
||
|
return Object.assign({}, n);
|
||
|
}
|