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

removed extra space

This commit is contained in:
Joffrey F
2013-02-17 17:38:12 -08:00
committed by Bryce Baril
parent ed2652f04c
commit 1ba5864a20

View File

@@ -552,7 +552,7 @@ function reply_to_strings(reply) {
if (Array.isArray(reply)) {
for (i = 0; i < reply.length; i++) {
if (reply[i] !== null && reply[i] !== undefined) {
reply[i] = reply[i].toString();
reply[i] = reply[i].toString();
}
}
return reply;