MCPcopy
hub / github.com/feiyu563/PrometheusAlert / daysInYear

Function daysInYear

static/plugins/chart.js/Chart.bundle.js:15479–15481  ·  view source on GitHub ↗
(year)

Source from the content-addressed store, hash-verified

15477 // HELPERS
15478
15479 function daysInYear(year) {
15480 return isLeapYear(year) ? 366 : 365;
15481 }
15482
15483 function isLeapYear(year) {
15484 return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;

Callers 3

dayOfYearFromWeeksFunction · 0.85
weeksInYearFunction · 0.85
configFromArrayFunction · 0.85

Calls 1

isLeapYearFunction · 0.85

Tested by

no test coverage detected