Files
2022-12-27 12:05:56 +01:00

13 lines
560 B
JavaScript

export const matchSegment = (existingSegment, segment)=>{
// Common case: segment is just a string
if (typeof existingSegment === 'string' && typeof segment === 'string') {
return existingSegment === segment;
}
// Dynamic parameter case: segment is an array with param/value. Both param and value are compared.
if (Array.isArray(existingSegment) && Array.isArray(segment)) {
return existingSegment[0] === segment[0] && existingSegment[1] === segment[1];
}
return false;
};
//# sourceMappingURL=match-segments.js.map