1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/@babel/runtime/helpers/esm/toArray.js

6 lines
261 B
JavaScript
Raw Normal View History

2023-12-18 13:12:25 +08:00
import arrayWithHoles from "./arrayWithHoles";
import iterableToArray from "./iterableToArray";
import nonIterableRest from "./nonIterableRest";
export default function _toArray(arr) {
return arrayWithHoles(arr) || iterableToArray(arr) || nonIterableRest();
}