isYesterday
import { isYesterday } from "https://esm.sh/v135/date-fns@3.6.0/index.d.mts";
@example
// If today is 6 October 2014, is 5 October 14:00:00 yesterday?
const result = isYesterday(new Date(2014, 9, 5, 14, 0))
//=> true
function isYesterday<DateType extends Date>(date: DateType | number | string): boolean;