Skip to content

Instantly share code, notes, and snippets.

@fuchao2012
Created March 1, 2017 09:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fuchao2012/a76223efb50c6521ee9450cf2282cea5 to your computer and use it in GitHub Desktop.
Save fuchao2012/a76223efb50c6521ee9450cf2282cea5 to your computer and use it in GitHub Desktop.
trim
if(!String.prototype.trim){ //ES5 IE9+
//regexp
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