nodelist-foreach-polyfill icon indicating copy to clipboard operation
nodelist-foreach-polyfill copied to clipboard

Polyfill for NodeList.forEach

Results 3 nodelist-foreach-polyfill issues
Sort by recently updated
recently updated
newest added

As far as I can tell, `Array.prototype.forEach` will function identically to `NodeList.prototype.forEach` and would thus be fine on `NodeList.prototype`: ```js if (typeof NodeList != "undefined" && !NodeList.prototype.forEach) { NodeList.prototype.forEach =...

Hey - I haven't maintained this package in years. Does someone else want to take it over?

Looks to me like Android does support `NodeList.prototype.forEach` since v51, according to MDN. Correct me if I'm wrong.