mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-10 19:54:57 +02: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);
|
|
} |