twenty / packages /twenty-shared /src /utils /array /mapByProperty.ts
Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
147 Bytes
export const mapByProperty =
<T extends { id: string }>(propertyName: keyof T) =>
(itemToMap: T) => {
return itemToMap[propertyName];
};