{"ScriptPreparationCode":"s = \u0060hey can i be in the slice\u0060;\r\nsx = \u0060hey can i\u0060\r\ncheck = \u0060hey can i be in \u0060;\r\nnoop = Function.prototype;\r\n\r\nfunction fastStartsWith(s, check) {\r\n\treturn s.slice(check.length) === check\r\n}\r\n","TestCases":[{"Name":"startswith","Code":"if (s.startsWith(check)) noop();","IsDeferred":false},{"Name":"slice","Code":"if (s.slice(check.length) === check) noop();","IsDeferred":false},{"Name":"tetete","Code":"if (fastStartsWith(s, check)) noop();","IsDeferred":false}]}