Run npm format

This commit is contained in:
konradpabjan 2021-12-06 15:54:15 -05:00
parent cfba9377f8
commit d0c9131261

View File

@ -53,10 +53,12 @@ export class StatusReporter {
): void {
// display 1 decimal place without any rounding
const percentage = this.formatPercentage(chunkEndIndex, totalUploadFileSize)
info(`Uploaded ${fileName} (${percentage.slice(
0,
percentage.indexOf('.') + 2
)}%) chunks ${chunkStartIndex}:${chunkEndIndex}`)
info(
`Uploaded ${fileName} (${percentage.slice(
0,
percentage.indexOf('.') + 2
)}%) chunks ${chunkStartIndex}:${chunkEndIndex}`
)
}
stop(): void {