stalbert
12/10/2018, 7:05 PMif (typeof (module) !== 'undefined' && typeof (exports) !== 'undefined') {
module.exports = OAuth;
}
/**
* Constructor
* @param {Object} opts consumer key and secret
*/
function OAuth(opts) {
if (!(this instanceof OAuth)) {
return new OAuth(opts);
}