UNPKG

passport-auth-jwt

Version:

Passport authentication strategy using JSON Web Tokens

11 lines (9 loc) 178 B
/** A mock Request for testing jwt extractor functions */ function Request() { this.method = 'GET'; this.url = '/'; this.headers = {}; } module.exports = Request;