You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
409 B
7 lines
409 B
3 years ago
|
import arrayWithHoles from "./arrayWithHoles.js";
|
||
|
import iterableToArrayLimit from "./iterableToArrayLimit.js";
|
||
|
import unsupportedIterableToArray from "./unsupportedIterableToArray.js";
|
||
|
import nonIterableRest from "./nonIterableRest.js";
|
||
|
export default function _slicedToArray(arr, i) {
|
||
|
return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest();
|
||
|
}
|