Skip to content

Instantly share code, notes, and snippets.

@kaimallea
Last active December 21, 2015 05:38
Show Gist options
  • Save kaimallea/6257988 to your computer and use it in GitHub Desktop.
Save kaimallea/6257988 to your computer and use it in GitHub Desktop.
Trim
if (typeof String.prototype.trim !== 'function') {
String.prototype.trim = function() {
return this.replace(/^\s*(\S*(\s+\S+)*)\s*$/, "$1");
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment