You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
fix whitespace usage
This commit is contained in:
4
index.js
4
index.js
@@ -883,9 +883,9 @@ commands.forEach(function (command) {
|
||||
|
||||
// store db in this.select_db to restore it on reconnect
|
||||
RedisClient.prototype.select = function (db, callback) {
|
||||
var self = this;
|
||||
var self = this;
|
||||
|
||||
this.send_command('select', [db], function (err, res) {
|
||||
this.send_command('select', [db], function (err, res) {
|
||||
if (err === null) {
|
||||
self.selected_db = db;
|
||||
}
|
||||
|
Reference in New Issue
Block a user