Files
2026-05-30 19:59:39 -03:00

12 lines
317 B
JavaScript

import { toEthiopicDate, toGregorianDate } from "../utils/index.js";
/**
* Start of year
*
* @param {Date} date - The original date
* @returns {Date} The start of the year
*/
export function startOfYear(date) {
const { year } = toEthiopicDate(date);
return toGregorianDate({ year, month: 1, day: 1 });
}