Sha256: e7c50a5ef995541a77fece86095a2e178ff0b258072d5102b2a22c428faaa151
Contents?: true
Size: 223 Bytes
Versions: 269
Compression:
Stored size: 223 Bytes
Contents
function nodeListForEach (nodes, callback) { if (window.NodeList.prototype.forEach) { return nodes.forEach(callback) } for (var i = 0; i < nodes.length; i++) { callback.call(window, nodes[i], i, nodes); } }
Version data entries
269 entries across 269 versions & 1 rubygems