8000 feat: remove bytes from printed size · fent/node-ytdl@d94aeb9 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit d94aeb9

Browse files
committed
feat: remove bytes from printed size
1 parent c3a4d14 commit d94aeb9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bin/ytdl.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,7 @@ if (opts.infoJson) {
215215
* @param {number} size
216216
*/
217217
const printVideoSize = (size) => {
218-
console.log(label('size: ') + util.toHumanSize(size) +
219-
' (' + size +' bytes)');
218+
console.log(label('size: ') + util.toHumanSize(size));
220219
console.log();
221220
if (!stdoutMutable) { return; }
222221

0 commit comments

Comments
 (0)
0