{"ScriptPreparationCode":null,"TestCases":[{"Name":"mmm","Code":"const messageId = \u0022hello {{planet}} what a {{weather}} day is in {{country}} today!\u0022;\r\nconst parameters = [{\u0022planet\u0022: \u0022earth\u0022}, {\u0022weather\u0022: \u0022sunny\u0022}, {\u0022country\u0022:\u0022Scotland\u0022}];\r\nconsole.log(Mustache.render(messageId,parameters));","IsDeferred":false},{"Name":"non","Code":"const messageId = \u0022hello {{planet}} what a {{weather}} day is in {{country}} today!\u0022;\r\nconst parameters = [{\u0022planet\u0022: \u0022earth\u0022}, {\u0022weather\u0022: \u0022sunny\u0022}, {\u0022country\u0022:\u0022Scotland\u0022}];\r\nconst result = messageId\r\n\t.replace(/{{planet}}/, parameters[0][\u0022planet\u0022])\r\n .replace(/{{weather}}/, parameters[1][\u0022weather\u0022])\r\n .replace(/{{country}}/, parameters[2][\u0022country\u0022])\r\nconsole.log(result)","IsDeferred":false}]}