from_epoch_ms
Interprets a number as Unix time.
from_epoch_ms(x:int) -> time
from_epoch_ms(x:uint) -> time
from_epoch_ms(x:float) -> time
Description
The from_epoch_ms
function interprets a number as Unix
time in milliseconds.
x: int|uint|float
The number of milliseconds since the Unix epoch, i.e., 00:00:00 UTC on January 1970.
Examples
Interpret a number as Unix time
from { x: from_epoch_ms(1730234246123.456) }
{x: 2024-10-29T20:37:26.123456}