{"ScriptPreparationCode":null,"TestCases":[{"Name":"native - string replacement","Code":"let strThing = \u0027/content/{id}/{content}\u0027;\r\nconst id = \u0022foo\u0022;\r\nconst content = \u0027bar\u0027;\r\nstrThing = strThing\r\n .replace(\u0027{id}\u0027, id)\r\n .replace(\u0027{content}\u0027, content)","IsDeferred":false},{"Name":"stringjs - string replacement","Code":"const id = \u0022foo\u0022;\r\nconst content = \u0027bar\u0027;\r\nS(\u0027content/{id}/{content}\u0027)\r\n .replace(\u0027{id}\u0027, id)\r\n .replace(\u0027{content}\u0027, content);","IsDeferred":false}]}