bpms_site/.svn/pristine/f5/f508b43376f30f17797312894c3b2e5181f343d7.svn-base
2025-11-02 16:38:49 +03:30

21 lines
678 B
Plaintext

import { matchHas } from "./prepare-destination";
export function getMiddlewareRouteMatcher(matchers) {
return (pathname, req, query)=>{
for (const matcher of matchers){
const routeMatch = new RegExp(matcher.regexp).exec(pathname);
if (!routeMatch) {
continue;
}
if (matcher.has || matcher.missing) {
const hasParams = matchHas(req, query, matcher.has, matcher.missing);
if (!hasParams) {
continue;
}
}
return true;
}
return false;
};
}
//# sourceMappingURL=middleware-route-matcher.js.map