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

index.js: fix missing .EXEC alias

This commit is contained in:
David Trejo
2012-04-27 13:35:14 -04:00
parent 625d5134e2
commit 3b645c893d

View File

@@ -995,6 +995,7 @@ Multi.prototype.exec = function (callback) {
}
});
};
Multi.prototype.EXEC = Multi.prototype.exec;
RedisClient.prototype.multi = function (args) {
return new Multi(this, args);