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.5.1 to 2.5.2

7

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

@@ -69,5 +69,4 @@ "main": "src/index.js",

"requirable": "^1.0.5",
"this": "^1.1.0",
"tsd": "^0.23.0",
"typescript": "^4.8.2",
"tsd": "^0.24.1",
"typescript": "^4.8.4",
"xo": "^0.52.3"

@@ -74,0 +73,0 @@ },

@@ -6,3 +6,3 @@ /* eslint-disable @typescript-eslint/consistent-type-definitions */

declare class KeyvRedis extends EventEmitter implements Store<Value> {
declare class KeyvRedis<Value=any> extends EventEmitter implements Store<Value> {
readonly ttlSupport: false;

@@ -9,0 +9,0 @@ namespace?: string | undefined;

@@ -71,3 +71,3 @@ const EventEmitter = require('events');

return this.redis.smembers(this._getNamespace())
.then(keys => this.redis.del([...keys, ...this._getNamespace()]))
.then(keys => this.redis.del([...keys, this._getNamespace()]))
.then(() => undefined);

@@ -74,0 +74,0 @@ }

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