endOfQuarterForUtc
Signature
Section titled “Signature”endOfQuarterForUtc(value: string): stringimport { endOfQuarterForUtc } from "@northguild/gmt/utc/calculate";Return the end of the quarter for a given UTC Instant string.
- Calculates quarter end month: Q1=3, Q2=6, Q3=9, Q4=12.
- Returns last moment of the quarter.
- Returns “” for invalid input.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
value |
string |
UTC Instant string |
Returns
Section titled “Returns”UTC Instant string for the end of the quarter, or “” on invalid input
Examples
Section titled “Examples”endOfQuarterForUtc("2024-03-15T12:00:00Z") // "2024-03-31T23:59:59.999Z"endOfQuarterForUtc("invalid") // ""