match
match(
toMatch
,matchTo
):MatchResult
Defined in: router/match-algorithm/match.ts:33
Match the given path to the given route path
Parameters
toMatch
string
The path to match
matchTo
string
The route path to match against
Returns
The match result
using MatchResult
Example
match('/user/:id/profile', '/user/123/profile') // { isMatch: true, params: { id: '123' } }match('/user/:id', '/user') // { isMatch: false }match('/user', '/user/123') // { isMatch: true }