Fix indents from tab to space

This commit is contained in:
Kazuhito Yokoi 2021-06-29 18:08:02 +09:00
parent f6b90c8271
commit be64603097
1 changed files with 4 additions and 4 deletions

View File

@ -278,13 +278,13 @@
outputLabels: function(i) {
var l;
if (this.format === "utf8") {
l = "file.label.utf8String";
l = "file.label.utf8String";
} else if (this.format === "lines") {
l = "file.label.utf8String_plural";
l = "file.label.utf8String_plural";
} else if (this.format === "stream") {
l = "file.label.binaryBuffer_plural";
l = "file.label.binaryBuffer_plural";
} else {
l = "file.label.binaryBuffer";
l = "file.label.binaryBuffer";
}
return this._(l);
},