Skip to content

Commit

Permalink
use strict comparison for message length
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Schauenberg committed Mar 31, 2013
1 parent 2c65034 commit 1c32a6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ config.configFile(process.argv[2], function (config, oldConfig) {
}

for (var midx in metrics) {
if (metrics[midx].length == 0) {
if (metrics[midx].length === 0) {
continue;
}
if (config.dumpMessages) {
Expand Down

0 comments on commit 1c32a6a

Please sign in to comment.