Skip to content

Commit aae4d8e

Browse files
committedJan 4, 2022
var to const
1 parent f17be2a commit aae4d8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const agent = require('./lib/agent.js');
1717
* @api public
1818
*/
1919
module.exports = function(app) {
20-
var obj = {};
20+
const obj = {};
2121

2222
if (typeof app === 'function') {
2323
app = http.createServer(app); // eslint-disable-line no-param-reassign

0 commit comments

Comments
 (0)
Please sign in to comment.