github-pages-deploy-action/node_modules/@babel/runtime-corejs3/helpers/toArray.js

11 lines
286 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
var arrayWithHoles = require("./arrayWithHoles");
var iterableToArray = require("./iterableToArray");
var nonIterableRest = require("./nonIterableRest");
function _toArray(arr) {
2020-03-31 20:57:48 +08:00
return arrayWithHoles(arr) || iterableToArray(arr) || nonIterableRest();
2020-03-07 11:45:40 +08:00
}
module.exports = _toArray;