isThisSecond
检查给定日期是否表示当前秒。
javascript
import { isThisSecond } from "date-fns";
// 示例日期
const date = new Date(); // 当前日期和时间
// 检查日期是否表示当前秒
const thisSecond = isThisSecond(date);
console.log("日期是否表示当前秒:", thisSecond);
// 日期是否表示当前秒:true 或 false