UNPKG

passport-appleid

Version:

Apple authentication strategy for Passport.

18 lines (16 loc) 258 B
/** * Parse profile. * * References: * * @param {object|string} json * @return {object} * @api public */ exports.parse = function(json) { if ('string' == typeof json) { json = JSON.parse(json); } var profile = {}; return profile; };