react-day-picker
Version:
Customizable Date Picker for React
12 lines (11 loc) • 320 B
JavaScript
import { toEthiopicDate, toGregorianDate } from "../utils/index.js";
/**
* Start of day
*
* @param {Date} date - The original date
* @returns {Date} The start of the day
*/
export function startOfDay(date) {
const { year, month, day } = toEthiopicDate(date);
return toGregorianDate({ year, month, day });
}