1 2 3 4 5 6 7 8 9 10// Load modules. var Strategy = require('./strategy'); // Expose Strategy. exports = module.exports = Strategy; // Exports. exports.Strategy = Strategy;
1 2 3 4 5 6 7 8 9 10
// Load modules. var Strategy = require('./strategy'); // Expose Strategy. exports = module.exports = Strategy; // Exports. exports.Strategy = Strategy;