@@ -171,17 +171,6 @@ function OutputStream(options) {
|
||||
return '"' + str.replace(/\x22/g, '\\"') + '"';
|
||||
}
|
||||
function quote_template() {
|
||||
if (!options.ascii_only) {
|
||||
str = str.replace(/\\(n|r|u2028|u2029)/g, function(s, c) {
|
||||
switch(c) {
|
||||
case "n": return "\n";
|
||||
case "r": return "\r";
|
||||
case "u2028": return "\u2028";
|
||||
case "u2029": return "\u2029";
|
||||
}
|
||||
return s;
|
||||
});
|
||||
}
|
||||
return '`' + str.replace(/`/g, '\\`') + '`';
|
||||
}
|
||||
if (options.ascii_only) str = to_ascii(str);
|
||||
|
||||
Reference in New Issue
Block a user