Skip to content

Instantly share code, notes, and snippets.

@ukmadlz
Last active October 22, 2015 09:22
Show Gist options
  • Save ukmadlz/b39f1ef9d02388543bd1 to your computer and use it in GitHub Desktop.
Save ukmadlz/b39f1ef9d02388543bd1 to your computer and use it in GitHub Desktop.
String.prototype.urlslug = function( ) {
return this.toLowerCase().replace(/[^A-Za-z0-9\_\/]+/g, "-");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment