Compare commits

...

2 Commits

Author SHA1 Message Date
Bennett Buchanan 5d07e8ba8a [drop] version bump 2018-04-09 10:50:39 -07:00
Bennett Buchanan 8eb2c62d08 FT: Add getter for Redis client 2018-04-09 10:46:19 -07:00
2 changed files with 9 additions and 1 deletions

View File

@ -22,6 +22,14 @@ class RedisClient {
return this;
}
/**
* Get the Redis instance.
* @return {Redis} - The Redis instance
*/
getClient() {
return this._client;
}
/**
* scan a pattern and return matching keys
* @param {string} pattern - string pattern to match with all existing keys

View File

@ -3,7 +3,7 @@
"engines": {
"node": "6.9.5"
},
"version": "7.4.0",
"version": "7.4.1",
"description": "Common utilities for the S3 project components",
"main": "index.js",
"repository": {