mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 15:30:57 +00:00
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);
|
|
} |