{"ScriptPreparationCode":"String.prototype.replaceAll = function(search, replacement) {\r\n var target = this;\r\n return target.replace(new RegExp(search, /\\r?\\n|\\r|\\n/g), replacement);\r\n};","TestCases":[{"Name":"1","Code":"\u0022this is it\u0022.replace(/\\r?\\n|\\r|\\n/g, \u0022\u002B\u0022);","IsDeferred":false},{"Name":"2","Code":"\u0022this is it\u0022.replace(/\\r?\\n|\\r|\\n/g, \u0022\u0022);","IsDeferred":false}]}