From f1fc3f252b8502ab3f5d90a327c0c234aa2fe589 Mon Sep 17 00:00:00 2001 From: Nico Wagner Date: Sat, 13 Apr 2024 13:01:36 +0200 Subject: [PATCH] refactor: change var to const declarations --- lib/request.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/request.js b/lib/request.js index e77db5d..76ea250 100644 --- a/lib/request.js +++ b/lib/request.js @@ -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