Skip to content

Instantly share code, notes, and snippets.

@MatthewBarker
Created November 21, 2016 12:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save MatthewBarker/bc484ab54a0e95df66cc7bda671db9b4 to your computer and use it in GitHub Desktop.
Save MatthewBarker/bc484ab54a0e95df66cc7bda671db9b4 to your computer and use it in GitHub Desktop.
Trim poly-fill for IE8
if (!String.prototype.trim) {
String.prototype.trim = function () {
return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '');
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment