aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers/routing-helpers.ts
blob: 18169f01b05e15e3bfc5cf761ee40342c550145c (plain) (blame)
1
2
3
import RouteParser from 'route-parser';

export const matchRoute = (pattern: string, path: string) => new RouteParser(pattern).match(path);