1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00

Remove jshint comments and update istanbul comments

This commit is contained in:
Ruben Bridgewater
2016-04-21 02:49:06 +02:00
parent 625f14e6ba
commit f7c4d131be
5 changed files with 9 additions and 8 deletions

View File

@@ -89,7 +89,7 @@ RedisClient.prototype.duplicate = function (options, callback) {
}
var existing_options = utils.clone(this.options);
options = utils.clone(options);
for (var elem in options) { // jshint ignore: line
for (var elem in options) {
existing_options[elem] = options[elem];
}
var client = new RedisClient(existing_options);