Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 237 Bytes

bind_forEach_on_NodeList.md

File metadata and controls

7 lines (6 loc) · 237 Bytes

Bind forEach() on NodeList

if (! Object.getOwnPropertyDescriptor(NodeList.prototype, 'forEach')) {
    Object.defineProperty(NodeList.prototype, 'forEach', Object.getOwnPropertyDescriptor(Array.prototype, 'forEach'));
}