{"ScriptPreparationCode":null,"TestCases":[{"Name":"Lodash","Code":"const a = {test:{val:[1]}}\r\nconst b = _.cloneDeep(a);\r\n\r\nb.test.val[0] = 2;\r\n\r\nif(a.test.val[0] === b.test.val[0] ){\r\n throw new Error(\u0022Shallow Cloned\u0022)\r\n}\r\n","IsDeferred":false},{"Name":"JSON.stringify.parse","Code":"const a = {test:{val:[1]}}\r\nconst b = JSON.parse(JSON.stringify(a))\r\n\r\nb.test.val[0] = 2;\r\n\r\nif(a.test.val[0] === b.test.val[0] ){\r\n throw new Error(\u0022Shallow Cloned\u0022)\r\n}","IsDeferred":false}]}