{"ScriptPreparationCode":"const regexp = new RegExp(/^\\-\\-/);\r\nconst prefix = \u0022--\u0022;\r\nconst str = \u0022--some-var\u0022;\r\nconst numTests = 10000;","TestCases":[{"Name":".startsWith()","Code":"let i = 0;\r\nwhile (i \u003C numTests) {\r\n \tstr.startsWith(prefix);\r\n\ti\u002B\u002B;\r\n}\r\n","IsDeferred":false},{"Name":"RegExp","Code":"let i = 0;\r\nwhile (i \u003C numTests) {\r\n \tregexp.test(str);\r\n\ti\u002B\u002B;\r\n}\r\n","IsDeferred":false}]}