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

4 lines
164 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
import arrayLikeToArray from "./arrayLikeToArray.js";
export default function _arrayWithoutHoles(arr) {
if (Array.isArray(arr)) return arrayLikeToArray(arr);
2023-09-25 15:58:56 +08:00
}