Skip to content

Instantly share code, notes, and snippets.

@Nutrox
Created January 21, 2011 16:14
Show Gist options
  • Save Nutrox/789900 to your computer and use it in GitHub Desktop.
Save Nutrox/789900 to your computer and use it in GitHub Desktop.
JavaScript - String.trim()
new function() {
var TRIM = /^\s*(.+?)\s*$/;
String.prototype.trim = function() {
return this.replace( TRIM, '$1' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment