New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

reliable-get

Package Overview
Dependencies
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reliable-get - npm Package Compare versions

Comparing version 0.1.8 to 0.1.9

8

lib/cache/RedisCache.js

@@ -78,3 +78,5 @@ 'use strict';

if (arguments.length === 3) { return this.set(key, value, _ttl, function() {}); }
if (arguments.length < 4) {
next = function() {};
}

@@ -90,3 +92,5 @@ var ttl = _ttl || oneMinute;

}, function() {
self._redisClient.expire(key, (ttl / 1000) * cleanupPeriod, next);
self._redisClient.expire(key, (ttl / 1000) * cleanupPeriod, function() {
next(null);
});
});

@@ -93,0 +97,0 @@

{
"name": "reliable-get",
"version": "0.1.8",
"version": "0.1.9",
"description": "A circuit breaker and cached wrapper for GET requests (enables reliable external service interaction).",

@@ -5,0 +5,0 @@ "main": "index.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