_array_with_holes.js 190 B

12345678
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = _arrayWithHoles;
  6. function _arrayWithHoles(arr) {
  7. if (Array.isArray(arr)) return arr;
  8. }