From 3b645c893d2371bee465ef89d0b2665ba5a9539f Mon Sep 17 00:00:00 2001 From: David Trejo Date: Fri, 27 Apr 2012 13:35:14 -0400 Subject: [PATCH] index.js: fix missing .EXEC alias --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index eb27628b97..5fd97c06ed 100644 --- a/index.js +++ b/index.js @@ -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);