monthsToYears
将月数转换为年数。
javascript
import { monthsToYears } from "date-fns";
// 示例月数
const months = 24;
// 将月数转换为年数
const years = monthsToYears(months);
console.log("转换后的年数:", years); // 转换后的年数:2