Add nodeListToArray

This commit is contained in:
Angelos Chalaris
2018-05-06 18:11:21 +03:00
parent f614e5e001
commit e8ecfc7085
5 changed files with 38 additions and 5 deletions

View File

@ -0,0 +1,13 @@
### nodeListToArray
Converts a `NodeList` to an array.
Use `Array.prototype.slice()` and `Function.prototype.call()` to convert a `NodeList` to an array.
```js
const nodeListToArray = nodeList => Array.prototype.slice.call(nodeList);
```
```js
nodeListToArray(document.childNodes); // [ <!DOCTYPE html>, html ]
```