mout
Version:
Modular Utilities
12 lines (11 loc) • 331 B
JavaScript
;
exports.__esModule = true;
var isLeapYear_1 = require("./isLeapYear");
/**
* return the amount of days in the year following the gregorian calendar
* and leap years
*/
function totalDaysInYear(fullYear) {
return isLeapYear_1["default"](fullYear) ? 366 : 365;
}
exports["default"] = totalDaysInYear;