mirror of
https://gitlab.com/famedly/conduit.git
synced 2025-01-10 08:14:45 +00:00
10 lines
217 B
Rust
10 lines
217 B
Rust
|
use std::time::{SystemTime, UNIX_EPOCH};
|
||
|
|
||
|
pub fn millis_since_unix_epoch() -> js_int::UInt {
|
||
|
(SystemTime::now()
|
||
|
.duration_since(UNIX_EPOCH)
|
||
|
.unwrap()
|
||
|
.as_millis() as u32)
|
||
|
.into()
|
||
|
}
|