Files
wechatpay-enterprise-web/node_modules/@babel/runtime/helpers/esm/toArray.js
jefferyzhao b9bdc8598b first commit
2025-07-31 17:44:12 +08:00

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