Skip to content

Instantly share code, notes, and snippets.

@directionforward
Created June 30, 2021 19:15
Show Gist options
  • Save directionforward/59c484c6bfa93b2669620a52d32cf6b5 to your computer and use it in GitHub Desktop.
Save directionforward/59c484c6bfa93b2669620a52d32cf6b5 to your computer and use it in GitHub Desktop.
Fix forEach for ES6 in IE
if (typeof NodeList.prototype.forEach !== 'function') {
NodeList.prototype.forEach = Array.prototype.forEach;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment