convertUtcToPlainDate
Signature
Section titled “Signature”convertUtcToPlainDate(value: string, options?: { timeZone?: string; }): stringimport { convertUtcToPlainDate } from "@northguild/gmt/utc/convert";Convert a UTC datetime string to a plain date string in the format “YYYY-MM-DD”.
- Converts to specified timezone before extracting date.
- Defaults to UTC if no timezone specified.
- Returns “” for invalid input.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
value |
string |
UTC datetime string (e.g., “2024-02-29T00:00:00Z”) |
Options
Section titled “Options”options
| Option | Type | Default |
|---|---|---|
timeZone? |
string |
— |
Returns
Section titled “Returns”plain date string in “YYYY-MM-DD” format or “” on invalid input
Examples
Section titled “Examples”convertUtcToPlainDate("2024-02-29T00:00:00Z") // "2024-02-29"convertUtcToPlainDate("2024-02-29T00:00:00Z", { timeZone: "America/New_York" }) // "2024-02-28"convertUtcToPlainDate("invalid") // ""