chatty-pub/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js
كارل مبارك 374620645c initial commit
2021-06-26 13:12:56 +02:00

7 lines
404 B
JavaScript

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();
}