You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
227 B

4 years ago
  1. function _arrayWithoutHoles(arr) {
  2. if (Array.isArray(arr)) {
  3. for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) {
  4. arr2[i] = arr[i];
  5. }
  6. return arr2;
  7. }
  8. }
  9. module.exports = _arrayWithoutHoles;