Skip to content

Instantly share code, notes, and snippets.

@miraage
Created October 22, 2015 20:42
Show Gist options
  • Save miraage/70fb658f491ea3e3d682 to your computer and use it in GitHub Desktop.
Save miraage/70fb658f491ea3e3d682 to your computer and use it in GitHub Desktop.
JS Slugify
function slugify(text) {
return angular.lowercase((text || ''))
.replace(/\s+/g, '-')
.replace(/[^\w\-]+/g, '')
.replace(/\-\-+/g, '-')
.replace(/^-+/, '')
.replace(/-+$/, '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment