(href: &str)
| 62 | |
| 63 | #[cfg(target_arch = "wasm32")] |
| 64 | fn set_pending_route_change(href: &str) { |
| 65 | if let Ok(mut slot) = pending_route_slot().lock() { |
| 66 | *slot = Some(normalize_href_impl(href)); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | pub fn normalize_href(href: &str) -> String { |
| 71 | normalize_href_impl(href) |
no test coverage detected