You've already forked node-redis
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:
10
index.js
10
index.js
@@ -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) {
|
||||||
|
Reference in New Issue
Block a user