{"ScriptPreparationCode":"const str_en = \u0022Comparing the performance of UTF-8 vs UTF-16 string encoding copying into and out of WASM. \uD83D\uDE42\u0022;\r\nconst str_ar = \u0022\u0627\u0633\u062A\u0639\u0627\u0631 \u062C\u062D\u0627 \u0645\u0631\u0629 \u0622\u0646\u064A\u0629 \u0645\u0646 \u062C\u0627\u0631\u0647 \u0648\u0639\u0646\u062F\u0645\u0627 \u0623\u0639\u0627\u062F\u0647\u0627 \u0644\u0647 \u0623\u0639\u0627\u062F \u0645\u0639\u0647\u0627 \u0622\u0646\u064A\u0629 \u0635\u063A\u064A\u0631\u0629\u0022;\r\n\r\nconst str_en_large = str_en.repeat(10);\r\nconst str_ar_large = str_ar.repeat(10);\r\n\r\nconst encoder = new TextEncoder(\u0027utf-8\u0027);\r\nconst decoder = new TextDecoder(\u0027utf-8\u0027, { ignoreBOM: true, fatal: true });","TestCases":[{"Name":"str_en","Code":"const buf = encoder.encode(str_en);\r\nconst str = decoder.decode(buf);","IsDeferred":false},{"Name":"str_ar","Code":"const buf = encoder.encode(str_ar);\r\nconst str = decoder.decode(buf);","IsDeferred":false},{"Name":"str_en_large","Code":"const buf = encoder.encode(str_en_large);\r\nconst str = decoder.decode(buf);","IsDeferred":false},{"Name":"str_ar_large","Code":"const buf = encoder.encode(str_ar_large);\r\nconst str = decoder.decode(buf);","IsDeferred":false}]}