Sha256: f96a8859f366ef0d2cdd86a900bbbe121f7838deed4c27437a580641218114dc
Contents?: true
Size: 294 Bytes
Versions: 69
Compression:
Stored size: 294 Bytes
Contents
define(['./isLeapYear'], function (isLeapYear) { /** * return the amount of days in the year following the gregorian calendar * and leap years */ function totalDaysInYear(fullYear){ return isLeapYear(fullYear)? 366 : 365; } return totalDaysInYear; });
Version data entries
69 entries across 69 versions & 2 rubygems