{"ScriptPreparationCode":"var string = \u0027I\\\u0027ve had to optimize a lot of string munging while working on MXHR and in my experience, plain String methods are significantly faster than RegExps in current browsers. Use RegExps on the shortest Strings possible and do everything you possibly can with String methods.\u0027","TestCases":[{"Name":"string.split(\u0022 \u0022)","Code":"var a = string.split(\u0022 \u0022)\r\nconsole.log(a)\r\nconsole.log(a)","IsDeferred":false},{"Name":"string.split(\u0022 \u0022) x2","Code":"console.log(string.split(\u0022 \u0022))\r\nconsole.log(string.split(\u0022 \u0022))","IsDeferred":false}]}