mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 22:09:31 +08:00
7 lines
No EOL
404 B
Text
7 lines
No EOL
404 B
Text
import arrayWithoutHoles from "./arrayWithoutHoles.js";
|
|
import iterableToArray from "./iterableToArray.js";
|
|
import unsupportedIterableToArray from "./unsupportedIterableToArray.js";
|
|
import nonIterableSpread from "./nonIterableSpread.js";
|
|
export default function _toConsumableArray(arr) {
|
|
return arrayWithoutHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableSpread();
|
|
} |