UNPKG

261 BJavaScriptView Raw
1import arrayWithHoles from "./arrayWithHoles";
2import iterableToArray from "./iterableToArray";
3import nonIterableRest from "./nonIterableRest";
4export default function _toArray(arr) {
5 return arrayWithHoles(arr) || iterableToArray(arr) || nonIterableRest();
6}
\No newline at end of file