PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/exponential-backoff/src/delay/skip-first

Просмотр файла: skip-first.delay.ts

import { Delay } from "../delay.base";

export class SkipFirstDelay extends Delay {
    public async apply() {
        return this.isFirstAttempt ? true : super.apply();
    }

    private get isFirstAttempt() {
        return this.attempt === 0;
    }

    protected get numOfDelayedAttempts() {
        return this.attempt - 1;
    }
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!