{"ScriptPreparationCode":" var text = \u0027\u0027;\r\n for (let i = 0; i \u003C 1024; i\u002B\u002B) {\r\n // Generate a random character from the ASCII table\r\n text \u002B= String.fromCharCode(32 \u002B Math.random() * (126 - 32));\r\n }","TestCases":[{"Name":"Test function using Lodash chaining","Code":" for (let i = 0; i \u003C 100; i\u002B\u002B) {\r\n _.chain(text).trim().startCase().value();\r\n }","IsDeferred":false},{"Name":"Test function without Lodash chaining","Code":" for (let i = 0; i \u003C 100; i\u002B\u002B) {\r\n _.startCase(_.trim(text));\r\n }","IsDeferred":false}]}