mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-15 00:15:42 +00:00
5 lines
141 B
TypeScript
5 lines
141 B
TypeScript
export function createSlug(title: string) {
|
|
return title.toLowerCase()
|
|
.replace(/['?]+/g, '')
|
|
.replace(/[.,\s]+/g, '-')
|
|
} |