Skip to main content
variable isAfterDate
import { isAfterDate } from "https://deno.land/x/30_seconds_of_typescript@v1.0.1/util.ts";

Check if a date is after another date.

Use the greater than operator (>) to check if the first date comes after the second one.

type

(dateA: Date, dateB: Date) => unknown