async-deco
Advanced tools
Comparing version 8.5.2 to 8.5.3
{ | ||
"name": "async-deco", | ||
"version": "8.5.2", | ||
"version": "8.5.3", | ||
"description": "A collection of decorators for adding features to asynchronous functions (callback or promise based).", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -22,3 +22,4 @@ var defaultLogger = require('../utils/default-logger') | ||
var retry = function __retry () { | ||
var timeout = counter++ ? intervalFunc(counter) : 0 | ||
var timeout = counter ? intervalFunc(counter) : 0 | ||
counter++ | ||
if (timeout) { | ||
@@ -25,0 +26,0 @@ setTimeout(function () { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
177561
4841