* Turn a NodeList, returned by querySelectorAll or another DOM method, * into an Array with array methods. * @param {NodeList} nodeList * @returns {Array } array of nodes
(nodeList)
| 156 | * @returns {Array<HTMLElement>} array of nodes |
| 157 | */ |
| 158 | function nodeListToArray(nodeList) { |
| 159 | return [].slice.call(nodeList); |
| 160 | } |
| 161 | |
| 162 | /** |
| 163 | * Try to find an audio node in the page that contains a usable |
no outgoing calls
no test coverage detected