mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 23:03:36 +01:00
13 lines
396 B
JavaScript
Vendored
13 lines
396 B
JavaScript
Vendored
var arrayWithHoles = require("./arrayWithHoles");
|
|
|
|
var iterableToArray = require("./iterableToArray");
|
|
|
|
var unsupportedIterableToArray = require("./unsupportedIterableToArray");
|
|
|
|
var nonIterableRest = require("./nonIterableRest");
|
|
|
|
function _toArray(arr) {
|
|
return arrayWithHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableRest();
|
|
}
|
|
|
|
module.exports = _toArray; |