Files
med-notes/.pnpm-store/v10/files/14/19dfddf4c3783f4e1aa9fde63b2f6a0961877e33bcc69e4b5389c51937a73ba7b8bfee92d1a39c4719f6852a5dd8a4e1694d1cfaf26fefc1c8f00c7d930749
2025-05-09 05:30:08 +02:00

15 lines
306 B
Plaintext

import { useMatch } from "./useMatch.js";
function useLoaderDeps(opts) {
const { select, ...rest } = opts;
return useMatch({
...rest,
select: (s) => {
return select ? select(s.loaderDeps) : s.loaderDeps;
}
});
}
export {
useLoaderDeps
};
//# sourceMappingURL=useLoaderDeps.js.map