UNPKG

dom-elements

Version:

Polyfill for Elements class and query/queryAll additions to the DOM standard.

10 lines (9 loc) 204 B
module.exports = function(nodeList){ var index = -1; var length = nodeList.length; var array = Array(length); while (++index < length) { array[index] = nodeList[index]; } return array; };