mirror of
https://git.mirrors.martin98.com/https://github.com/cyberman54/curl
synced 2025-08-23 03:49:06 +08:00
7 lines
379 B
JavaScript
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();
|
|
} |