Skip to content

startOfQuarterForDateTime

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

Return the start of the quarter for a given ISO datetime.

  • Returns the first day of the quarter with time set to 00:00:00.
  • Q1 returns “01-01T00:00:00”, Q2 returns “04-01T00:00:00”, etc.
  • Validates input using isValidDateTime.
Parameter Type Description
value string ISO PlainDateTime string

ISO PlainDateTime string for the start of the quarter, or “” on invalid input

startOfQuarterForDateTime("2024-03-15T12:00:00") // "2024-01-01T00:00:00"
startOfQuarterForDateTime("2024-06-15T12:00:00") // "2024-04-01T00:00:00"
startOfQuarterForDateTime("invalid") // ""

plain/calculate/startOfQuarterForDateTime.ts