Skip to content

Commit

Permalink
Clarify comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhanson committed Mar 28, 2016
1 parent e26089b commit feb1fc8
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,16 @@
/**
* Module dependencies.
*/
// Load modules.
var Strategy = require('./strategy')
, AuthorizationError = require('./errors/authorizationerror')
, TokenError = require('./errors/tokenerror')
, InternalOAuthError = require('./errors/internaloautherror');


/**
* Expose `Strategy` directly from package.
*/
// Expose Strategy.
exports = module.exports = Strategy;

/**
* Export constructors.
*/
// Exports.
exports.Strategy = Strategy;

/**
* Export errors.
*/
exports.AuthorizationError = AuthorizationError;
exports.TokenError = TokenError;
exports.InternalOAuthError = InternalOAuthError;

0 comments on commit feb1fc8

Please sign in to comment.