passport-wunderlist
Version:
Wunderlist authentication strategy for Passport.
23 lines (19 loc) • 367 B
JavaScript
/**
* Parse profile.
*
* @param {object|string} json
* @return {object}
* @api public
*/
exports.parse = function(json) {
if ('string' == typeof json) {
json = JSON.parse(json);
}
var profile = {};
profile.id = json.id;
profile.displayName = json.name;
if (json.email) {
profile.emails = [{ value: json.email }];
}
return profile;
};