mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-22 02:58:36 +00:00
7 lines
No EOL
379 B
JavaScript
Vendored
7 lines
No EOL
379 B
JavaScript
Vendored
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();
|
|
} |