{"ScriptPreparationCode":"string = \u0027This is a benchmark to test if matching a regex is faster that splitting a string\u0027;\r\nregex = /./gi;","TestCases":[{"Name":"String.split","Code":"const result = string.split(\u0027\u0027);","IsDeferred":false},{"Name":"Regex.match","Code":"const result = string.match(regex);","IsDeferred":false},{"Name":"Deconstruction","Code":"const result = [...string];","IsDeferred":false}]}