1 2 3 4 5 6 7 8 9
#[cfg(feature = "wasm")] mod wasm; #[cfg(feature = "wasm")] pub use wasm::{now, until_now}; #[cfg(not(feature = "wasm"))] mod std; #[cfg(not(feature = "wasm"))] pub use std::{now, until_now};