/// `true` if the target platform is iOS or Android, otherwise `false`.
pub const IS_MOBILE: bool = true;
pub const IS_MOBILE: bool = false;
/// `true` if the target architecture is WebAssembly (`wasm32`), otherwise `false`.
pub const IS_WEB: bool = true;
pub const IS_WEB: bool = false;