social-media/system/helpers/Utility.js
sajjad_talkhabi 9ba07f99d5 first commit
2023-11-08 23:41:47 +03:30

8 lines
381 B
JavaScript

module.exports.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
};