UNPKG

@burglekitt/gmt

Version:

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

14 lines (13 loc) 472 B
/** * Return the current nanosecond from the Unix timestamp in UTC as a zero-padded string. * * - Uses Temporal.Now.instant() converted to UTC zoned date time. * - Returns zero-padded string to 3 digits. * - Returns "" on failure. * * @returns current nanosecond string (zero-padded to 3 digits) or "" on failure * * @example getUnixNanosecond() // "789" * @example getUnixNanosecond() // "" (on failure) */ export declare function getUnixNanosecond(): string;