UNPKG

date-manip

Version:

A lightweight JavaScript date utility library that provides modularity, high performance, and additional features. It supports various date operations, including date addition and subtraction, formatting, comparison, etc.

10 lines (9 loc) 286 B
import { i as isLeapYear } from "./isLeapYear-G37NadS-.mjs"; const arr = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; const arr2 = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; function daysOfYear(year) { return isLeapYear(year) ? arr2 : arr; } export { daysOfYear as d };