Skip to content

Commit

Permalink
Fix lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sirlancelot committed Jul 18, 2017
1 parent 096119b commit 2e35808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ module.exports = function (options, wp, done) {
colors: gutil.colors.supportsColor
}));
} else {
var statsOptions = options && options.stats || {};
var statsOptions = (options && options.stats) || {};

Object.keys(defaultStatsOptions).forEach(function (key) {
if (typeof statsOptions[key] === 'undefined') {
Expand Down

0 comments on commit 2e35808

Please sign in to comment.