//! Platform abstraction for types that differ between native and WASM.
//!//! On native targets, re-exports from `std::time`.
//! On `wasm32`, re-exports from `web_time` which uses `js_sys::Date` under the hood.
#[cfg(target_arch ="wasm32")]pubuseweb_time::{Instant, SystemTime,UNIX_EPOCH};#[cfg(not(target_arch ="wasm32"))]pubusestd::time::{Instant, SystemTime,UNIX_EPOCH};