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 c931463 commit 16f533aCopy full SHA for 16f533a
lib/build/browserify.js
@@ -341,10 +341,10 @@ function printMessages(messages) {
341
if (messages.length > 0) {
342
343
// push the buffer to stdout in a single block
344
- var width = Number(80) || 0;
345
- var hr = new Array(width + 1); // this is a good trick to repeat a character N times
346
- var start = (width > 0) ? (hr.join('\u25BC') + '\n') : '';
347
- var stop = (width > 0) ? (hr.join('\u25B2') + '\n') : '';
+ var WIDTH = 80;
+ var hr = new Array(WIDTH + 1); // this is a good trick to repeat a character N times
+ var start = (WIDTH > 0) ? (hr.join('\u25BC') + '\n') : '';
+ var stop = (WIDTH > 0) ? (hr.join('\u25B2') + '\n') : '';
348
var message = messages
349
.map(groupByFilename)
350
.join('');
0 commit comments