We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cb0c61 commit 11f7094Copy full SHA for 11f7094
src/commands/server.js
@@ -66,8 +66,8 @@ exports.run = (options) => {
66
let contentLength = res._contentLength || '';
67
if(contentLength){
68
contentLength = contentLength > 1024
69
- ? (contentLength / 1024).toFixed(2) + 'kb '
70
- : contentLength + 'b ';
+ ? (contentLength / 1024).toFixed(2) + ' kB'
+ : contentLength + ' bytes';
71
}
72
73
format = format.replace(/%date/g, "\x1b[90m" + '[' + (moment().format(dateFormat)) + ']' + "\x1b[0m");
0 commit comments