Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@keyv/redis

Package Overview
Dependencies
Maintainers
2
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@keyv/redis - npm Package Compare versions

Comparing version 2.3.4 to 2.3.5

8

package.json
{
"name": "@keyv/redis",
"version": "2.3.4",
"version": "2.3.5",
"description": "Redis storage adapter for Keyv",

@@ -44,7 +44,7 @@ "main": "src/index.js",

"dependencies": {
"ioredis": "^5.0.3"
"ioredis": "^5.0.4"
},
"devDependencies": {
"@keyv/test-suite": "*",
"ava": "^4.1.0",
"ava": "^4.2.0",
"delay": "^5.0.0",

@@ -56,3 +56,3 @@ "keyv": "*",

"tsd": "^0.20.0",
"typescript": "^4.6.3",
"typescript": "^4.6.4",
"xo": "^0.48.0"

@@ -59,0 +59,0 @@ },

@@ -83,8 +83,6 @@ const EventEmitter = require('events');

const values = await get(keys);
for (const i in keys) {
if (Object.prototype.hasOwnProperty.call(keys, i)) {
const key = keys[i];
const value = values[i];
yield [key, value];
}
for (const [i] of keys.entries()) {
const key = keys[i];
const value = values[i];
yield [key, value];
}

@@ -97,3 +95,3 @@

yield * iterate(0, `${namespace ? namespace + ':' : ''}*`);
yield * iterate(0, `${namespace}:*`);
}

@@ -105,4 +103,8 @@

}
disconnect() {
return this.redis.disconnect();
}
}
module.exports = KeyvRedis;
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc