Skip to content

Commit

Permalink
updating build and version
Browse files Browse the repository at this point in the history
  • Loading branch information
branden-blackline committed Nov 5, 2022
1 parent aca7f5f commit 1ca2a67
Show file tree
Hide file tree
Showing 4 changed files with 2,389 additions and 5 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ Strategy.prototype.mapProfile = function (i) {
Strategy.prototype.authenticate = function (req) {
var _this = this;

var options = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1];
var username = null;
var password = null;
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var username = null,
password = null;

// get username and password

Expand Down
Loading

0 comments on commit 1ca2a67

Please sign in to comment.