Skip to content
This repository was archived by the owner on Apr 10, 2024. It is now read-only.

Commit 4cf7dd9

Browse files
committed
Adding missing var declaration for urlString (fixes global leaks in mocha testing)
1 parent 064665a commit 4cf7dd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OAuth/Consumer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
this.request = function (options) {
9191
var method, url, data, headers, success, failure, xhr, i,
9292
headerParams, signatureMethod, signatureString, signature,
93-
query = [], appendQueryString, signatureData = {}, params, withFile;
93+
query = [], appendQueryString, signatureData = {}, params, withFile, urlString;
9494

9595
method = options.method || 'GET';
9696
url = URI(options.url);

0 commit comments

Comments
 (0)