Skip to content

Instantly share code, notes, and snippets.

@fuchao2012
Created March 1, 2017 09:33
Show Gist options
  • Select an option

  • Save fuchao2012/a76223efb50c6521ee9450cf2282cea5 to your computer and use it in GitHub Desktop.

Select an option

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