Comparing version 0.0.1-6 to 0.0.1-7
{ | ||
"name": "re", | ||
"description": "Do it again, after a bit.", | ||
"version": "0.0.1-6", | ||
"version": "0.0.1-7", | ||
"main": "./lib/re", | ||
@@ -6,0 +6,0 @@ "keywords": ["utility", "retry", "exponential backoff", "linear backoff"], |
@@ -62,6 +62,10 @@ # Re | ||
retries : 10, | ||
retryStrategy : {"type": retry.RETRY_STRATEGY.EXPONENTIAL, "initial":100, "base":2}, | ||
retryStrategy : { | ||
"type": retry.RETRY_STRATEGY.EXPONENTIAL, | ||
"initial":100, | ||
"base":2 | ||
} | ||
} | ||
You pass this into the `Re` constructor. | ||
You pass this options object into the `Re` constructor. | ||
@@ -68,0 +72,0 @@ var re = retry.Re(options); |
6657
91