{"ScriptPreparationCode":"/*your preparation JavaScript code goes here\r\nTo execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/\r\n\r\nconst m = new Map([[1, 1],[2,2],[3,3]]);\r\n\r\nconst getAsIs = (key) =\u003E m.get(key);\r\n\r\nconst getOrNull = (key) =\u003E m.get(key) ?? null;\r\n\r\n\r\nconst test = (t) =\u003E {\r\nfor (let index = 0; index \u003C 100000; index\u002B\u002B) {\r\n t(index);\r\n}\r\n}\r\n\r\n\r\nasync function globalMeasureThatScriptPrepareFunction() {\r\n // This function is optional, feel free to remove it.\r\n // await someThing();\r\n}","TestCases":[{"Name":"getAsIs","Code":"test(getAsIs);","IsDeferred":false},{"Name":"getOrNull","Code":"test(getOrNull);","IsDeferred":false}]}