Ramda Adjunct 2.30.0

isSparseArray.js

  1. import {
  2. values,
  3. both,
  4. complement,
  5. pipe,
  6. converge,
  7. identical,
  8. length,
  9. } from 'ramda';
  10. import isArray from './isArray';
  11. /**
  12. * Checks if input value is a sparse Array.
  13. * An array with at least one "empty slot" in it is often called a "sparse array."
  14. * Empty slot doesn't mean that the slot contains `null` or `undefined` values,
  15. * but rather that the slots don't exist.
  16. *
  17. * @func isSparseArray
  18. * @memberOf RA
  19. * @since {@link https://char0n.github.io/ramda-adjunct/2.20.0|v2.20.0}
  20. * @category Type
  21. * @sig * -> Boolean
  22. * @param {*} list The list to test
  23. * @return {boolean}
  24. * @see {@link https://github.com/getify/You-Dont-Know-JS/blob/f0d591b6502c080b92e18fc470432af8144db610/types%20%26%20grammar/ch3.md#array|Sparse Arrays}, {@link RA.isArray|isArray}
  25. * @example
  26. *
  27. * RA.isSparseArray(new Array(3)); // => true
  28. * RA.isSparseArray([1,,3]); // => true
  29. *
  30. * const list = [1, 2, 3];
  31. * delete list[1];
  32. * RA.isSparseArray(list); // => true
  33. *
  34. * RA.isSparseArray([1, 2, 3]); // => false
  35. */
  36. const isSparseArray = both(
  37. isArray,
  38. converge(complement(identical), [pipe(values, length), length])
  39. );
  40. export default isSparseArray;