mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 08:11:30 -06:00
respond to code review comments
This commit is contained in:
parent
804a3a5a57
commit
4465fe1890
@ -617,7 +617,9 @@ module ts {
|
||||
function serializeStringArray(list: string[]): string {
|
||||
var output = "";
|
||||
for (var i = 0, n = list.length; i < n; i++) {
|
||||
if (i) output += ",";
|
||||
if (i) {
|
||||
output += ",";
|
||||
}
|
||||
output += "\"" + escapeString(list[i]) + "\"";
|
||||
}
|
||||
return output;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user