File size: 147 Bytes
d9494a5
 
 
 
 
1
2
3
4
5
6
export const mapByProperty =
  <T extends { id: string }>(propertyName: keyof T) =>
  (itemToMap: T) => {
    return itemToMap[propertyName];
  };