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

Remove trailing whitespace

This commit is contained in:
Ruben Bridgewater
2015-07-22 16:19:30 +02:00
parent a2bc597212
commit 6866ff9b1e
3 changed files with 8 additions and 8 deletions

View File

@@ -9,7 +9,7 @@ function print_results(obj) {
// build a map of all keys and their types
client.keys("*", function (err, all_keys) {
var key_types = {};
all_keys.forEach(function (key, pos) { // use second arg of forEach to get pos
client.type(key, function (err, type) {
key_types[key] = type;