UNPKG

passport-smartsheet

Version:

Smartsheet 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; };