Spaces:
Running
Running
Mhamdans17
feat: implement dynamic cosmetic company slug URL routing for owners and cashiers
17178b7 | export const getCompanySlug = (companyName) => { | |
| if (!companyName) return 'toko'; | |
| return companyName | |
| .toLowerCase() | |
| .replace(/[^a-z0-9]+/g, '-') // Replace spaces and special characters with hyphens | |
| .replace(/(^-|-$)/g, ''); // Remove leading/trailing hyphens | |
| }; | |