Skip to content
This repository was archived by the owner on Jan 11, 2022. It is now read-only.

Commit 70d955d

Browse files
committed
fix implicit global variable
1 parent ffde68c commit 70d955d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/conjur/authz.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ module.exports = {
7777
delete options['kind']
7878

7979
if ( g.u.size(options) > 0 ) {
80-
query = g.u.map(options, function(v,k) { g.format("%s=%s", k, encodeURIComponent(v)) } ).join("&")
80+
var query = g.u.map(options, function(v,k) { g.format("%s=%s", k, encodeURIComponent(v)) } ).join("&")
8181
path = g.format("%s?%s", path, query)
8282
}
8383

0 commit comments

Comments
 (0)