UNPKG

nautical

Version:
13 lines (11 loc) 268 B
module.exports.authorize = function(options, config) { switch(config.authType || 'oauth') { case 'basic': options.auth = config.token + ':'; break; case 'oauth': options.headers.Authorization = 'Bearer ' + config.token; break; } return options; };