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