{"ScriptPreparationCode":"var x = Math.random() * 100;\r\nvar runs = 1000;","TestCases":[{"Name":"lodash round","Code":"for (var i = 0; i \u003C runs; i\u002B\u002B) {\r\n _.round(x);\r\n}","IsDeferred":false},{"Name":"lodash round 1","Code":"for (var i = 0; i \u003C runs; i\u002B\u002B) {\r\n _.round(x, 1);\r\n}","IsDeferred":false},{"Name":"toFixed()","Code":"for (var i = 0; i \u003C runs; i\u002B\u002B) {\r\n x.toFixed();\r\n}","IsDeferred":false},{"Name":"toFixed(1)","Code":"for (var i = 0; i \u003C runs; i\u002B\u002B) {\r\n x.toFixed(1);\r\n}","IsDeferred":false},{"Name":"Math.round()","Code":"for (var i = 0; i \u003C runs; i\u002B\u002B) {\r\n Math.round(x);\r\n}","IsDeferred":false},{"Name":"Math.round(1)","Code":"for (var i = 0; i \u003C runs; i\u002B\u002B) {\r\n Math.round(x * 10) / 10;\r\n}","IsDeferred":false}]}