1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | const lodash_1 = require("./wrap/lodash");
|
4 | const symbols_1 = require("./symbols");
|
5 | function cloneDeepIfPossible(args) {
|
6 | try {
|
7 | return lodash_1.default.cloneDeep(args);
|
8 | }
|
9 | catch (e) {
|
10 | return symbols_1.default.uncloneable;
|
11 | }
|
12 | }
|
13 | exports.default = cloneDeepIfPossible;
|