Skip to content

Commit

Permalink
Merge pull request jamesknelson#71 from jbielick/patch-1
Browse files Browse the repository at this point in the history
allow `options.canonicalUris` to be false
  • Loading branch information
James K Nelson authored Jan 30, 2017
2 parents 0033a37 + 4c87b4e commit 05a6de8
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 @@ -14,7 +14,7 @@ function plugin(options) {

options = options || {};

if (!options.canonicalUris) {
if (typeof options.canonicalUris === 'undefined') {
options.canonicalUris = true;
}

Expand Down

0 comments on commit 05a6de8

Please sign in to comment.