Skip to content

Instantly share code, notes, and snippets.

View NickelMattera's full-sized avatar
🌈
No pride for some of us without liberation for all of us.

Nickel Mattera (she/they) NickelMattera

🌈
No pride for some of us without liberation for all of us.
View GitHub Profile
@NickelMattera
NickelMattera / nodeListForEach.js
Created November 15, 2016 14:20
NodeList forEach Polyfill
if (!NodeList.prototype.forEach) {
NodeList.prototype.forEach = function(callback, argument) {
var array = Array.prototype.slice.call(this);
return array.forEach(callback, argument)
}
}