mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-14 11:25:41 +00:00
Ryan Freeman
6c0100e9a3
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m39s
5 lines
142 B
TypeScript
5 lines
142 B
TypeScript
export function createSlug(title: string) {
|
|
return title.toLowerCase()
|
|
.replace(/['?:]+/g, '')
|
|
.replace(/[.,\s]+/g, '-')
|
|
} |