mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-01 09:03:55 -05:00
8 lines
158 B
JavaScript
8 lines
158 B
JavaScript
export function dashify(str) {
|
|
return ('' + str)
|
|
.toLowerCase()
|
|
.replace(/\s/g, '-')
|
|
.replace(/[^a-z0-9\-\.]/gi, '')
|
|
.replace(/\:/g, '');
|
|
}
|