Echo/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js

4 lines
183 B
JavaScript
Raw Normal View History

2021-02-11 21:31:41 +08:00
import arrayLikeToArray from "@babel/runtime/helpers/esm/arrayLikeToArray";
export default function _arrayWithoutHoles(arr) {
if (Array.isArray(arr)) return arrayLikeToArray(arr);
}