bpms_site/.svn/pristine/5f/5f8820526f556e8624b14e096326b6b89d724564.svn-base
2025-11-02 16:38:49 +03:30

10 lines
320 B
Plaintext

import getRouteFromAssetPath from "../shared/lib/router/utils/get-route-from-asset-path";
export default function matchBundle(regex, input) {
const result = regex.exec(input);
if (!result) {
return null;
}
return getRouteFromAssetPath(`/${result[1]}`);
}
//# sourceMappingURL=match-bundle.js.map