UNPKG

selenium-state-machine

Version:
13 lines (12 loc) 296 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Timer = void 0; class Timer { constructor(start, timeout) { this.doneTime = Math.max(0, start - timeout); } elapsed(now) { return this.doneTime >= now; } } exports.Timer = Timer;