Spaces:
Running
Running
File size: 282 Bytes
17178b7 | 1 2 3 4 5 6 7 8 | 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
};
|