create-fansitem
Version:
Create a new Manifest backend
12 lines (11 loc) • 552 B
JavaScript
export const slugify = (text) => {
return text
.toString() // Convert to string
.normalize('NFD') // Normalize accents
.replace(/[\u0300-\u036f]/g, '') // Remove accent marks
.toLowerCase() // Convert to lowercase
.replace(/[^a-z0-9\s-]/g, '') // Remove special characters (keep spaces and hyphens)
.replace(/\s+/g, '-') // Replace spaces with hyphens
.replace(/-+/g, '-') // Replace multiple hyphens with single hyphen
.replace(/^-+|-+$/g, ''); // Remove leading/trailing hyphens
};