Skip to content

Instantly share code, notes, and snippets.

View jyungtong's full-sized avatar

jin yung jyungtong

  • Kuala Lumpur, Malaysia
View GitHub Profile
@jyungtong
jyungtong / slugify.js
Last active December 20, 2015 02:43 — forked from mathewbyrne/slugify.js
Javascript Slugify for node js
module.exports = function (text) {
if (text) {
return text.toString().toLowerCase().trim()
.replace(/\s+/g, '-') // Replace spaces with '-'
.replace(/&/g, '-and-') // Replace & with 'and'
.replace(/[$+,:;=?@#|'<>.^*()%!\/\\]+/g, '') // Remove all non-word chars, to prevent replace on non-latin characters
.replace(/\-\-+/g, '-') // Replace multiple - with single -
.replace(/^-+/, '') // Trim - from start of text
.replace(/-+$/, ''); // Trim - from end of text
}