getUnixNanosecond
Signature
Section titled “Signature”getUnixNanosecond(): stringimport { getUnixNanosecond } from "@northguild/gmt/unix/get";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
Section titled “Returns”current nanosecond string (zero-padded to 3 digits) or “” on failure
Examples
Section titled “Examples”getUnixNanosecond() // "789"getUnixNanosecond() // "" (on failure)