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

13 lines
288 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
var _Array$isArray = require("../core-js/array/is-array");
2020-03-22 05:13:25 +08:00
function _arrayWithoutHoles(arr) {
2020-03-31 20:57:48 +08:00
if (_Array$isArray(arr)) {
for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) {
arr2[i] = arr[i];
}
return arr2;
}
2020-03-07 11:45:40 +08:00
}
module.exports = _arrayWithoutHoles;