Skip to content

Commit

Permalink
refactor: change var to const declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
Trickfilm400 committed Apr 13, 2024
1 parent 2718909 commit f1fc3f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ import https from "https"
import methods from "methods"
import util from "util"

var Agent = superagent.agent, Request = superagent.Request;
const Agent = superagent.agent;
const Request = superagent.Request;

/**
* ## Integration Testing
Expand Down

0 comments on commit f1fc3f2

Please sign in to comment.