UNPKG

286 BJavaScriptView Raw
1var arrayWithHoles = require("./arrayWithHoles");
2
3var iterableToArray = require("./iterableToArray");
4
5var nonIterableRest = require("./nonIterableRest");
6
7function _toArray(arr) {
8 return arrayWithHoles(arr) || iterableToArray(arr) || nonIterableRest();
9}
10
11module.exports = _toArray;
\No newline at end of file