chopZonedMilliseconds
Signature
Section titled “Signature”chopZonedMilliseconds(value: string): stringimport { chopZonedMilliseconds } from "@northguild/gmt/zoned/chop";Returns the zoned datetime string rounded/truncated to second precision.
- Removes millisecond precision.
- Returns “” for invalid input.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
value |
string |
ISO 8601 zoned datetime string |
Returns
Section titled “Returns”Zoned datetime string without milliseconds or “” for invalid
Examples
Section titled “Examples”chopZonedMilliseconds("2024-02-29T14:30:45.123-05:00[America/New_York]") // "2024-02-29T14:30:45-05:00[America/New_York]"chopZonedMilliseconds("invalid") // ""