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