@bodil/core - v0.4.7
    Preparing search index...

    Function isAfter

    • Test if the given Temporal.Instant comes after a certain moment in time.

      If other is unspecified, compare with the current time.

      If other is a Temporal.Duration, compare with that duration added to the current time.

      If other is a Temporal.Instant, compare with that instant.

      Parameters

      Returns boolean

      time.isAfter(instant) // is `instant` in the future?
      time.isAfter(instant, otherInstant) // is `instant` after `otherInstant`?
      time.isAfter(instant, duration) // is `instant` more than `duration` into the future?