parcoursup/node_modules/@babel/runtime/helpers/esm/toArray.js
lalBi94 7bc56c09b5 $
2023-03-05 13:23:23 +01:00

7 lines
379 B
JavaScript

import arrayWithHoles from "./arrayWithHoles.js";
import iterableToArray from "./iterableToArray.js";
import unsupportedIterableToArray from "./unsupportedIterableToArray.js";
import nonIterableRest from "./nonIterableRest.js";
export default function _toArray(arr) {
return arrayWithHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableRest();
}