update modules
This commit is contained in:
9
node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js
generated
vendored
9
node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js
generated
vendored
@@ -1,9 +1,4 @@
|
||||
import arrayLikeToArray from "./arrayLikeToArray";
|
||||
export default function _arrayWithoutHoles(arr) {
|
||||
if (Array.isArray(arr)) {
|
||||
for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) {
|
||||
arr2[i] = arr[i];
|
||||
}
|
||||
|
||||
return arr2;
|
||||
}
|
||||
if (Array.isArray(arr)) return arrayLikeToArray(arr);
|
||||
}
|
Reference in New Issue
Block a user