4 lines
119 B
TypeScript
4 lines
119 B
TypeScript
export const computeDomain = (entityId: string): string => {
|
|
return entityId.substring(0, entityId.indexOf('.'));
|
|
};
|