twenty / packages /twenty-shared /src /utils /sentry /getGenericOperationName.ts
Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
194 Bytes
// truncates to first word: FindOnePerson -> Find, AggregateCompanies -> Aggregate, ...
export const getGenericOperationName = (name?: string) => {
return name?.match(/^[A-Z][a-z]*/)?.[0];
};