UNPKG

passport-trakt

Version:
19 lines (16 loc) 304 B
/** * Parse profile. * * @param {Object|String} json * @return {Object} * @api private */ exports.parse = function(json) { if ('string' == typeof json) { json = JSON.parse(json); } var profile = {}; profile.id = json.username; profile.username = json.name; return profile; };