We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb7b674 commit ddc067dCopy full SHA for ddc067d
packages/optimizely-sdk/lib/utils/fns/index.js
@@ -39,7 +39,9 @@ module.exports = {
39
return to;
40
}
41
},
42
- cloneDeep: require('lodash/cloneDeep'),
+ cloneDeep: function(object) {
43
+ return JSON.parse(JSON.stringify(object));
44
+ },
45
currentTimestamp: function() {
46
return Math.round(new Date().getTime());
47
0 commit comments