Comparing version 0.0.2 to 0.0.3
@@ -1,2 +0,2 @@ | ||
// This file was generated by ./generate_commands.js on Mon Sep 16 2013 12:06:11 GMT-0300 (ART) | ||
// This file was generated by ./generate_commands.js on Sat Jan 04 2014 12:35:56 GMT-0800 (PST) | ||
module.exports = [ | ||
@@ -150,3 +150,7 @@ "APPEND", | ||
"ZSCORE", | ||
"ZUNIONSTORE" | ||
"ZUNIONSTORE", | ||
"SCAN", | ||
"SSCAN", | ||
"HSCAN", | ||
"ZSCAN" | ||
]; |
@@ -8,3 +8,4 @@ module.exports = function (redisClient) { | ||
return function (done) { | ||
redisClient[command].apply(redisClient, args.concat(done)); | ||
args.push(done); | ||
return redisClient[command].apply(redisClient, args); | ||
} | ||
@@ -15,2 +16,2 @@ } | ||
return exports; | ||
}; | ||
}; |
{ | ||
"name": "co-redis", | ||
"description": "A node-redis wrapper to be used with visionmedia's co library", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Martín Ciparelli", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6553
188