GT2/Ejectable/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js

4 lines
161 B
JavaScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
import arrayLikeToArray from "./arrayLikeToArray.js";
export default function _arrayWithoutHoles(arr) {
if (Array.isArray(arr)) return arrayLikeToArray(arr);
}