UNPKG

@burglekitt/gmt

Version:

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

15 lines (14 loc) 502 B
/** * Return the nanosecond (0-999) for a given ISO 8601 time string. * * - Returns zero-padded string for nanosecond. * - Returns "" for invalid input. * * @param value ISO time string * @returns Nanosecond (000-999) or "" on invalid input * * @example parseNanosecondFromTime("12:30:45.123") // "123" * @example parseNanosecondFromTime("12:30:45.000") // "000" * @example parseNanosecondFromTime("invalid") // "" */ export declare function parseNanosecondFromTime(value: string): string;