Skip to content

Instantly share code, notes, and snippets.

@stemar
Created March 16, 2015 23:03
Show Gist options
  • Select an option

  • Save stemar/b71930f6e54bd384bd13 to your computer and use it in GitHub Desktop.

Select an option

Save stemar/b71930f6e54bd384bd13 to your computer and use it in GitHub Desktop.
trim.js
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