isWithinInterval
检查给定日期是否在指定时间间隔内。
javascript
import { isWithinInterval } from "date-fns";
// 示例日期和时间间隔
const dateToCheck = new Date(2024, 0, 5); // 2024年1月5日
const interval = {
start: new Date(2024, 0, 1), // 开始日期
end: new Date(2024, 0, 10), // 结束日期
};
// 检查日期是否在时间间隔内
const withinInterval = isWithinInterval(dateToCheck, interval);
console.log("日期是否在时间间隔内:", withinInterval);
// 日期是否在时间间隔内:true