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

async-deco

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-deco - npm Package Compare versions

Comparing version 5.1.7 to 5.1.8

2

package.json
{
"name": "async-deco",
"version": "5.1.7",
"version": "5.1.8",
"description": "A collection of decorators for adding features to asynchronous functions (callback or promise based).",

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

@@ -28,3 +28,3 @@ var defaultLogger = require('../utils/default-logger');

var retry = function () {
if (intervalFunc(counter++) > 0) {
if (counter++ && intervalFunc(counter) > 0) { // do not wait for counter === 0
setTimeout(function () {

@@ -31,0 +31,0 @@ func.apply(context, args);

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