Skip to content

Commit

Permalink
Fix lodash error as reported in #91
Browse files Browse the repository at this point in the history
This is an artifact of updating lodash to v4 that was missed.
  • Loading branch information
Matt Smith committed Apr 6, 2016
1 parent 594eaad commit ede66f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/count.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function execute(options) {
let formattedResults = format(results, srcPath);
console.log(formattedResults);

if (_.any(results, 'exceedsLimit')){
if (_.some(results, 'exceedsLimit')){
return 1;
}

Expand Down

0 comments on commit ede66f5

Please sign in to comment.