Skip to content

Instantly share code, notes, and snippets.

@fschell
Created March 4, 2014 09:53
Show Gist options
  • Save fschell/9343466 to your computer and use it in GitHub Desktop.
Save fschell/9343466 to your computer and use it in GitHub Desktop.
trim.js
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