UNPKG

@burglekitt/gmt

Version:

Temporal-based date and time utilities with timezone support and polyfill integration

12 lines (11 loc) 396 B
/** * Return the current local PlainDateTime as an ISO string using the system timeZone. * * - Uses Temporal.Now.zonedDateTimeISO to get current time in system timezone. * - Returns "" when system timezone is unavailable. * * @returns ISO 8601 PlainDateTime string or "" on error * * @example getNow() // "2024-03-15T14:30:45" (current time) */ export declare function getNow(): string;