orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
36 lines (33 loc) • 907 B
JavaScript
/* jshint loopfunc:true */
;
Object.defineProperty(exports, '__esModule', {
value: true
});
var clone = function clone(obj, parent) {
if (typeof obj !== 'object') {
return obj;
}
var cloned = new obj.constructor();
for (var i in obj) {
if (!({}).hasOwnProperty.call(obj, i)) {
continue;
}
var value = obj[i];
if (i === 'parent' && typeof value === 'object') {
if (parent) {
cloned[i] = parent;
}
} else if (i === 'source') {
cloned[i] = value;
} else if (value instanceof Array) {
cloned[i] = value.map(function (i) {
return clone(i, cloned);
});
} else {
cloned[i] = clone(value, cloned);
}
}
return cloned;
};
exports['default'] = clone;
module.exports = exports['default'];