mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 01:19:30 +08:00
7 lines
No EOL
379 B
Text
7 lines
No EOL
379 B
Text
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();
|
|
} |