mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-21 22:25:03 -04:00
12 lines
394 B
TypeScript
12 lines
394 B
TypeScript
import { createSelector } from 'reselect';
|
|
import { findCommand } from 'Utilities/Command';
|
|
import createCommandsSelector from './createCommandsSelector';
|
|
|
|
function createCommandSelector(name: string, constraints = {}) {
|
|
return createSelector(createCommandsSelector(), (commands) => {
|
|
return findCommand(commands, { name, ...constraints });
|
|
});
|
|
}
|
|
|
|
export default createCommandSelector;
|