mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-03-05 13:20:20 -05: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;
|