Spaces:
Build error
Build error
| export const findByProperty = <T, K extends keyof T>( | |
| property: K, | |
| valueToMatch: T[K] | null | undefined, | |
| ) => { | |
| return (itemToFind: T) => { | |
| return itemToFind[property] === valueToMatch; | |
| }; | |
| }; | |