mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 03:58:24 -04: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);
|
|
} |