UNPKG

passport-xero

Version:

Xero authentication strategy for Passport.

15 lines (13 loc) 215 B
/** * Parse profile. * * @param {Object|String} json * @return {Object} * @api private */ exports.parse = function(json) { if ('string' === typeof json) { json = JSON.parse(json); } return json; };