Skip to content

Commit

Permalink
Fix incorrect return on turned off plugins
Browse files Browse the repository at this point in the history
...should’ve been a `continue` all along.
  • Loading branch information
wooorm committed Apr 10, 2017
1 parent 80406e3 commit c73fe3f
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 @@ -112,7 +112,7 @@ function unified() {
transformer = null;

if (options === false) {
return;
continue;
}

if (options === true) {
Expand Down

0 comments on commit c73fe3f

Please sign in to comment.