Skip to content

Instantly share code, notes, and snippets.

@erberg-snippets
Created July 10, 2014 17:28
Show Gist options
  • Save erberg-snippets/2af1556b736a1eb701f4 to your computer and use it in GitHub Desktop.
Save erberg-snippets/2af1556b736a1eb701f4 to your computer and use it in GitHub Desktop.
trimPolyfill.js
/**
* Trim Polyfill for IE8 and lower.
*/
if (!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