File size: 262 Bytes
04c6ee3
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { useLocation } from "react-router";

export function usePath() {
  // Decode special characters. Drop trailing slash. (Some clients add it, e.g. Playwright.)
  const path = decodeURIComponent(useLocation().pathname).replace(/[/]$/, "");
  return path;
}