arrayWithHoles.js 86 B

123
  1. export default function _arrayWithHoles(arr) {
  2. if (Array.isArray(arr)) return arr;
  3. }