UNPKG

react-day-picker

Version:

Customizable Date Picker for React

12 lines (11 loc) 241 B
import { toEthiopicDate } from "../utils/index.js"; /** * Get year * * @param {Date} date - The original date * @returns {number} The year */ export function getYear(date) { const { year } = toEthiopicDate(date); return year; }