lnked/react-starter

View on GitHub
src/helpers/predicts/is-active.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const isActive = (match?: any, location?: Location) => {
  if (!match) {
    return false
  }

  return match && location && location.pathname === match.url
}