main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
388 bytes
|
Line | |
---|
1 | import arrayWithHoles from "./arrayWithHoles.js";
|
---|
2 | import iterableToArray from "./iterableToArray.js";
|
---|
3 | import unsupportedIterableToArray from "./unsupportedIterableToArray.js";
|
---|
4 | import nonIterableRest from "./nonIterableRest.js";
|
---|
5 | function _toArray(r) {
|
---|
6 | return arrayWithHoles(r) || iterableToArray(r) || unsupportedIterableToArray(r) || nonIterableRest();
|
---|
7 | }
|
---|
8 | export { _toArray as default }; |
---|
Note:
See
TracBrowser
for help on using the repository browser.