utils.rs 148 B

123456
  1. use wasm_bindgen::JsCast;
  2. use web_sys::window;
  3. pub(crate) fn strip_slash_suffix(path: &str) -> &str {
  4. path.strip_suffix('/').unwrap_or(path)
  5. }