Skip to content

Instantly share code, notes, and snippets.

@detj
Created September 21, 2012 16:10
Show Gist options
  • Save detj/3762374 to your computer and use it in GitHub Desktop.
Save detj/3762374 to your computer and use it in GitHub Desktop.
Useful string functions
String.prototype.killWhiteSpace = function() {
return this.replace(/\s/g, '');
};
String.prototype.reduceWhiteSpace = function() {
return this.replace(/\s+/g, ' ');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment