Skip to content

Commit

Permalink
Fix issue with lodash 4
Browse files Browse the repository at this point in the history
  • Loading branch information
iccir committed Jul 11, 2018
1 parent 8c0e94d commit 26b6d56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/typechecker/DiagnosticParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ getWarnings(diagnostics, fileCallback)
let sawClass = false;
let sawProtocol = false;

if (_.include(sBlacklistCodes, code)) {
if (_.includes(sBlacklistCodes, code)) {
return null;
}

Expand Down

0 comments on commit 26b6d56

Please sign in to comment.