UNPKG

178 BJavaScriptView Raw
1/**
2 A mock Request for testing jwt extractor functions
3 */
4function Request() {
5 this.method = 'GET';
6 this.url = '/';
7 this.headers = {};
8}
9
10module.exports = Request;