{"ScriptPreparationCode":"var obj = {v1: {value: \u0027string\u0027, num: 123, obj: {boo: true, arr: [{str: \u0027string\u0027},{str: \u0027string\u0027},{str: \u0027string\u0027},{str: \u0027string\u0027},{str: \u0027string\u0027}]}}, v2: {value: \u0027string\u0027, num: 123, obj: {boo: true, arr: [{str: \u0027string\u0027},{str: \u0027string\u0027},{str: \u0027string\u0027},{str: \u0027string\u0027},{str: \u0027string\u0027}]}}}","TestCases":[{"Name":"Object.fromEntries \u002B Object.entries","Code":"JSON.stringify(Object.fromEntries(Object.entries(obj).map(([key, value]) =\u003E [key, {...value, obj: value.obj.arr}])))","IsDeferred":false},{"Name":"Object.keys","Code":"const newObj = {}\r\n Object.keys(obj).forEach(key =\u003E {\r\n newObj[key] = { ...obj[key], ccSubset: obj[key]?.ccSubset?.ccSubset };\r\n });\r\nJSON.stringify(newObj)","IsDeferred":false}]}