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

11 lines
227 B
JavaScript
Raw Normal View History

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;