···2626| `randomDelay` | Allows the randomized delay described above to be disabled. When this option is set to `false` there will be exactly a `initialDelayMs` wait between each retry. |
2727| `maxNumberAttempts` | Allows the max number of retries to be defined. |
2828| `retryIf` | Apply a custom test to the returned error to determine whether it should be retried. |
2929+| `retryWith` | Apply a transform function allowing you to selectively replace a retried `Operation` or return a nullish value. This will act like `retryIf` where a truthy value retries (`retryIf` takes precedence and overrides this function.) |