warungpos-ui / src /utils /slug.js
Mhamdans17
feat: implement dynamic cosmetic company slug URL routing for owners and cashiers
17178b7
Raw
History Blame Contribute Delete
282 Bytes
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
};