File size: 310 Bytes
f0743f4
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { matchPath } from 'react-router-dom';

const matchesRouteStart = (pathname: string, pattern: string) =>
  matchPath({ path: pattern, end: false }, pathname) != null;

export const isArtifactRoute = (pathname: string) =>
  matchesRouteStart(pathname, '/c/*') || matchesRouteStart(pathname, '/share/*');