Skip to content

Instantly share code, notes, and snippets.

@ww24
Created June 30, 2012 06:58
Show Gist options
  • Save ww24/3022724 to your computer and use it in GitHub Desktop.
Save ww24/3022724 to your computer and use it in GitHub Desktop.
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