Skip to content

Commit 17cf193

Browse files
committedJan 4, 2022
move exports to the bottom
1 parent a0a5d57 commit 17cf193

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed
 

‎lib/agent.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@
44
* Module dependencies.
55
*/
66

7-
/**
8-
* Expose `Agent`.
9-
*/
10-
11-
module.exports = TestAgent;
127
const { agent: Agent } = require('superagent');
138
const methods = require('methods');
149
const http = require('http');
@@ -68,3 +63,9 @@ methods.forEach(function(method) {
6863
});
6964

7065
TestAgent.prototype.del = TestAgent.prototype.delete;
66+
67+
/**
68+
* Expose `Agent`.
69+
*/
70+
71+
module.exports = TestAgent;

0 commit comments

Comments
 (0)
Please sign in to comment.