1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

Fixed toArray() indentation

This commit is contained in:
Tj Holowaychuk
2010-09-17 19:34:26 -07:00
parent c0f0877bcd
commit 1e471abe1c

View File

@@ -29,11 +29,11 @@ function small_toString(buf) {
} }
function toArray(args) { function toArray(args) {
var arr = new Array(args.length); var arr = new Array(args.length);
for (var i = 0, len = args.length; i < len; ++i) { for (var i = 0, len = args.length; i < len; ++i) {
arr[i] = args[i]; arr[i] = args[i];
} }
return arr; return arr;
} }
RedisReplyParser.prototype.execute = function (incoming_buf) { RedisReplyParser.prototype.execute = function (incoming_buf) {