mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-15 05:55:41 +00:00
r-freeman
377349ae44
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m43s
6 lines
166 B
TypeScript
6 lines
166 B
TypeScript
export function createSlug(title: string) {
|
|
return title.toLowerCase()
|
|
.replace(/\'/g, '')
|
|
.replace(/\?/g, '')
|
|
.replace(/[.,\s]+/g, '-')
|
|
} |