9 lines
272 B
TypeScript
9 lines
272 B
TypeScript
export function generateSlug(text: string): string {
|
|
return text
|
|
.toLowerCase()
|
|
.trim()
|
|
.replace(/[^\w\s-]/g, "") // Remove special characters
|
|
.replace(/\s+/g, "-") // Replace spaces with hyphens
|
|
.replace(/-+/g, "-"); // Remove consecutive hyphens
|
|
}
|