compare
Summary
Compare two matches by specificity.
Passing to .sort() will sort matches from least specific to most specific.
Signature
function compare(a: RoutePatternMatch, b: RoutePatternMatch): -1 | 0 | 1;
Params
a
the first match to compare
b
the second match to compare
Returns
-1 if a is less specific, 1 if a is more specific, 0 if tied.