Skip to content

Instantly share code, notes, and snippets.

@arkartavtsev
Created January 19, 2019 09:47
Show Gist options
  • Save arkartavtsev/66a24336e48dd4b28a6eeeb3c523a8cb to your computer and use it in GitHub Desktop.
Save arkartavtsev/66a24336e48dd4b28a6eeeb3c523a8cb to your computer and use it in GitHub Desktop.
IE endsWith polyfill
if (typeof String.prototype.endsWith !== 'function') {
String.prototype.endsWith = function(suffix) {
return this.indexOf(suffix, this.length - suffix.length) !== -1;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment