Gab-Social/app/javascript/gabsocial/utils/slugify.js
mgabdev d68ad5f4ab Added utils/slugify
• Added:
- utils/slugify
2020-08-05 23:51:02 -05:00

9 lines
453 B
JavaScript

// https://gist.github.com/mathewbyrne/1280286
export default function slugify(text) {
return text.toString().toLowerCase()
.replace(/\s+/g, '-') // Replace spaces with -
.replace(/[^\w\-]+/g, '') // Remove all non-word chars
.replace(/\-\-+/g, '-') // Replace multiple - with single -
.replace(/^-+/, '') // Trim - from start of text
.replace(/-+$/, ''); // Trim - from end of text
}