{"ScriptPreparationCode":"function makeid(length) {\r\n let result = \u0027\u0027;\r\n const characters = \u0027ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 \u0027;\r\n const charactersLength = characters.length;\r\n let counter = 0;\r\n while (counter \u003C length) {\r\n result \u002B= characters.charAt(Math.floor(Math.random() * charactersLength));\r\n counter \u002B= 1;\r\n }\r\n return result;\r\n}\r\n\r\nvar data = Array(10000).fill(Array(40).fill(makeid(1000))) \r\nvar rows = []\r\nvar row = {}","TestCases":[{"Name":"no","Code":"data.forEach((items) =\u003E {items.forEach((item,i)=\u003E{row[i] = item}); rows.push(row)})","IsDeferred":false},{"Name":"normalize ","Code":"data.forEach((items) =\u003E {items.forEach((item,i)=\u003E{row[i] = item.normalize()}); rows.push(row)})","IsDeferred":false},{"Name":"trim","Code":"data.forEach((items) =\u003E {items.forEach((item,i)=\u003E{row[i] = item.trim()}); rows.push(row)})","IsDeferred":false},{"Name":"both 1","Code":"data.forEach((items) =\u003E {items.forEach((item,i)=\u003E{row[i] = item.normalize().trim()}); rows.push(row)})","IsDeferred":false},{"Name":"both 2","Code":"data.forEach((items) =\u003E {items.forEach((item,i)=\u003E{row[i] = item.trim().normalize()}); rows.push(row)})","IsDeferred":false}]}