toArray.js 261 B

123456
  1. import arrayWithHoles from "./arrayWithHoles";
  2. import iterableToArray from "./iterableToArray";
  3. import nonIterableRest from "./nonIterableRest";
  4. export default function _toArray(arr) {
  5. return arrayWithHoles(arr) || iterableToArray(arr) || nonIterableRest();
  6. }