Comparing version 0.1.1-4 to 0.1.1-5
@@ -97,3 +97,3 @@ (function (){ | ||
createExponentialRetry = function(spec){ | ||
function createExponentialRetry(spec){ | ||
return function(retries){ | ||
@@ -110,3 +110,3 @@ var spread = spec.rand ? Math.random() + 1 : 1, | ||
createLinearRetry = function(spec){ | ||
function createLinearRetry(spec){ | ||
return function(retries){ | ||
@@ -122,3 +122,3 @@ var spread = spec.rand ? Math.random() + 1 : 1, | ||
createConstantRetry = function(spec){ | ||
function createConstantRetry(spec){ | ||
return function(){ | ||
@@ -125,0 +125,0 @@ var spread = spec.rand ? Math.random() + 1 : 1, |
{ | ||
"name": "re", | ||
"description": "Do it again, after a bit.", | ||
"version": "0.1.1-4", | ||
"version": "0.1.1-5", | ||
"main": "./lib/re", | ||
@@ -6,0 +6,0 @@ "keywords": ["utility", "retry", "exponential backoff", "linear backoff"], |
16861