Skip to content

getDaysInYear

getDaysInYear(value: string): number
import { getDaysInYear } from "@northguild/gmt/plain/calculate";

Return the number of days in the calendar year containing value.

  • 365 for a common year, 366 for a leap year.
  • Returns null on invalid input.
Parameter Type Description
value string ISO PlainDate string

365 or 366, or null on invalid input

getDaysInYear("2024-06-15") // 366 (leap year)
getDaysInYear("2023-06-15") // 365
getDaysInYear("invalid") // null

plain/calculate/getDaysInYear.ts