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

redis-manager-utils

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redis-manager-utils - npm Package Compare versions

Comparing version 1.1.4 to 1.1.5

19

BaseClass.js

@@ -376,2 +376,21 @@ const REDIS = require("redis");

// Sorted Sets
zpopmin( wKey ) {
if ( !wKey ) { return undefined; }
let that = this;
return new Promise( function( resolve , reject ) {
try { that.redis.zpopmin( wKey , function( err , results ) { resolve( results ); }); }
catch( error ) { console.log( error ); resolve( "null" ); }
});
}
zpopmax( wKey ) {
if ( !wKey ) { return undefined; }
let that = this;
return new Promise( function( resolve , reject ) {
try { that.redis.zpopmax( wKey , function( err , results ) { resolve( results ); }); }
catch( error ) { console.log( error ); resolve( "null" ); }
});
}
// Extras

@@ -378,0 +397,0 @@ deleteMultiplePatterns( wKeyPatterns ) {

2

package.json
{
"name": "redis-manager-utils",
"version": "1.1.4",
"version": "1.1.5",
"description": "",

@@ -5,0 +5,0 @@ "main": "main.js",

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