UNPKG

@burglekitt/gmt

Version:

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

15 lines (14 loc) 461 B
/** * Return the second (0-59) for a given ISO 8601 time string. * * - Returns zero-padded string for second. * - Returns "" for invalid input. * * @param value ISO time string * @returns Second (00-59) or "" on invalid input * * @example parseSecondFromTime("12:30:45") // "45" * @example parseSecondFromTime("12:00:00") // "00" * @example parseSecondFromTime("invalid") // "" */ export declare function parseSecondFromTime(value: string): string;