Skip to content
This repository has been archived by the owner on May 8, 2018. It is now read-only.

Commit

Permalink
remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
Bentley authored and Bentley committed Jul 26, 2017
1 parent c41e59d commit cf32c95
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions lib/formatters/quiet.js
Expand Up @@ -14,14 +14,6 @@ module.exports = function (err, data, pkgPath) {
return returnString + Chalk.yellow('(+) ') + err;
}

var width = 80;
var colWidth = 15;
if (process.stdout.isTTY) {
width = process.stdout.getWindowSize()[0] - 10;
if (!width || width <= colWidth) {
width = 80;
}
}
if (data.length === 0) {

return '';
Expand Down

0 comments on commit cf32c95

Please sign in to comment.