From 016e2d94f05d0c5697f016beae9362d11dfe0154 Mon Sep 17 00:00:00 2001 From: Dave Eddy Date: Mon, 31 Aug 2015 17:14:48 -0400 Subject: [PATCH] unnecessary call to common function --- lib/common.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/common.js b/lib/common.js index 7c77f05..34083ae 100755 --- a/lib/common.js +++ b/lib/common.js @@ -239,8 +239,6 @@ function humanSizeFromBytes(opts, bytes) { return format(template, s, sizes[i]); } -humanSizeFromBytes({precision:1}, 1638400); - function capitalize(s) { return s[0].toUpperCase() + s.substr(1); }