jaredhanson/passport-local

View on GitHub
lib/index.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * The `passport-local` module provides a {@link https://www.passportjs.org/ Passport}
 * strategy for authenticating a username and password.
 *
 * @module passport-local
 */


// Module dependencies.
var Strategy = require('./strategy');

/*
 * `{@link Strategy}` constructor.
 *
 * @type {function}
 */
exports = module.exports = Strategy;

/*
 * `{@link Strategy}` constructor.
 *
 * @type {function}
 */
exports.Strategy = Strategy;