{"ScriptPreparationCode":null,"TestCases":[{"Name":"operators","Code":"const clamp = (t, min, max) =\u003E t \u003C min ? min : t \u003E max ? max : t;\r\nlet s = 0;\r\nfor (let i=0; i\u003C1000; i\u002B\u002B) s \u002B= clamp(i, -1, 1);","IsDeferred":false},{"Name":"math","Code":"const clamp = (t, min, max) =\u003E Math.min(max, Math.max(min, t));\r\nlet s = 0;\r\nfor (let i=0; i\u003C1000; i\u002B\u002B) s \u002B= clamp(i, -1, 1);","IsDeferred":false}]}