Skip to content

Instantly share code, notes, and snippets.

@d4rkr00t
Created June 8, 2014 07:35
Show Gist options
  • Save d4rkr00t/9cc3eec5b985535cb21b to your computer and use it in GitHub Desktop.
Save d4rkr00t/9cc3eec5b985535cb21b to your computer and use it in GitHub Desktop.
String.trim
if (!String.prototype.trim) {
String.prototype.trim = function () {
return this.replace(/^\s+|\s+$/g, '');
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment