mirror of
https://github.com/r-freeman/portfolio.git
synced 2025-07-04 03:30:20 +00:00
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m40s
5 lines
143 B
TypeScript
5 lines
143 B
TypeScript
export function createSlug(title: string) {
|
|
return title.toLowerCase()
|
|
.replace(/[\'\?]+/g, '')
|
|
.replace(/[.,\s]+/g, '-')
|
|
} |