UNPKG

fumadocs-ui

Version:

The framework for building a documentation website in Next.js

8 lines (7 loc) 267 B
export function isActive(url, pathname, nested = true) { if (url.endsWith('/')) url = url.slice(0, -1); if (pathname.endsWith('/')) pathname = pathname.slice(0, -1); return url === pathname || (nested && pathname.startsWith(`${url}/`)); }