UNPKG

mout

Version:

Modular Utilities

7 lines (6 loc) 198 B
/** * return the amount of days in the year following the gregorian calendar * and leap years */ declare function totalDaysInYear(fullYear: any): 366 | 365; export default totalDaysInYear;