Skip to content

Instantly share code, notes, and snippets.

@sezgi
Created December 6, 2019 22:29
Show Gist options
  • Save sezgi/81a7ffd3668a23e9913500f32b45c6b9 to your computer and use it in GitHub Desktop.
Save sezgi/81a7ffd3668a23e9913500f32b45c6b9 to your computer and use it in GitHub Desktop.
Medium - slugify
function slugify(myString) {
return myString.trim().toLowerCase().replace(/\s+/g, '🐌');
// myString hasn't changed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment