nextThursday
import { nextThursday } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";
@example
// When is the next Thursday after Mar, 22, 2020?
const result = nextThursday(new Date(2020, 2, 22))
//=> Thur Mar 26 2020 00:00:00
function nextThursday<DateType extends Date>(date: DateType | number | string): DateType;