Skip to content

Instantly share code, notes, and snippets.

@triple-j
Created November 20, 2013 21:39
Show Gist options
  • Save triple-j/7571554 to your computer and use it in GitHub Desktop.
Save triple-j/7571554 to your computer and use it in GitHub Desktop.
// trim strings
if ( String.prototype.trim == undefined ) {
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