Skip to content

Commit

Permalink
Merge pull request #10 from toshi38/stelau/no-implicit-key
Browse files Browse the repository at this point in the history
Don't implicity declare key.
  • Loading branch information
Floby committed Jul 11, 2018
2 parents c5e50dc + 26de3cc commit bef89b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/url-assembler-factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ module.exports = function (request) {
};

function _multiParam (chainable, hash, strict) {
for (key in hash) {
for (var key in hash) {
chainable = chainable.param(key, hash[key], strict);
}
return chainable;
Expand Down

0 comments on commit bef89b2

Please sign in to comment.