Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaiklor committed Sep 30, 2015
1 parent 36d8370 commit fff3b00
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,12 @@ export default class FacebookTokenStrategy extends OAuth2Strategy {
});
}

/**
* Converts array of fields to string
* @param {Array} _profileFields Profile fields i.e. ['id', 'email']
* @returns {String}
* @private
*/
_convertProfileFields(_profileFields) {
let profileFields = _profileFields || [];
let fields = [];
Expand Down

0 comments on commit fff3b00

Please sign in to comment.