Skip to content

Instantly share code, notes, and snippets.

@snmslavk
Created September 1, 2016 14:02
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 snmslavk/868a3dbf0c04dca2a9c8304866fcc8c4 to your computer and use it in GitHub Desktop.
Save snmslavk/868a3dbf0c04dca2a9c8304866fcc8c4 to your computer and use it in GitHub Desktop.
if(typeof String.prototype.trim !== 'function') {
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