function isPending(currentDate) {
    const date = currentDate ? new Date(currentDate) : Date.now();

    return Boolean(this.startAt && date < this.startAt);
}