in src/retry/RetryConfig.ts [34:40]
constructor(retryLimit: number = 4, backoffFunction: BackoffFunction = defaultBackoffFunction) {
if (retryLimit < 0) {
throw new RangeError("Value for retryLimit cannot be negative.");
}
this._retryLimit = retryLimit;
this._backoffFunction = backoffFunction;
}