//! The one canonical wall-clock read.
//!
//! Before this module the same `SystemTime::now() → UNIX_EPOCH` helper was
//! copy-pasted a dozen times across the native crates under four different names
//! (`now_unix`, `unix_now`, `now_secs`, `now_ms`). It lives here so a reader
//! meets it once. Wasm targets (the console, the edge Worker) do their own
//! clock read via `js_sys::Date` and never call this — `SystemTime::now()`
//! panics there — so these helpers are native-only by convention.
use ;
/// Seconds since the Unix epoch, saturating to `0` before 1970 (unreachable in
/// practice; keeps callers infallible).
/// Milliseconds since the Unix epoch, saturating to `0` before 1970.