Files
med-notes/.pnpm-store/v10/files/39/721a4116ad014dde903cb87630b6f610edfba152de5fc6165fa36b3593fe8067d6137b6ebd716a4ec64d1c53c9b5ae93a78f1d4b6eb77856413359b584efd7
2025-05-09 05:30:08 +02:00

17 lines
387 B
Plaintext

import { useMatch } from "./useMatch.js";
function useSearch(opts) {
return useMatch({
from: opts.from,
strict: opts.strict,
shouldThrow: opts.shouldThrow,
structuralSharing: opts.structuralSharing,
select: (match) => {
return opts.select ? opts.select(match.search) : match.search;
}
});
}
export {
useSearch
};
//# sourceMappingURL=useSearch.js.map