UNPKG

233 BJavaScriptView Raw
1//IE Fix, src: https://www.reddit.com/r/programminghorror/comments/6abmcr/nodelist_lacks_foreach_in_internet_explorer/
2if (typeof(NodeList.prototype.forEach)!==typeof(alert)){
3 NodeList.prototype.forEach=Array.prototype.forEach;
4}
\No newline at end of file