Ramda Adjunct 2.30.0

hasPath.js

  1. import { length, has, path, head, tail, curryN } from 'ramda';
  2. import isObj from './isObj';
  3. /**
  4. * Returns whether or not an object has an own property with the specified name at a given path.
  5. *
  6. * @func hasPath
  7. * @memberOf RA
  8. * @since {@link https://char0n.github.io/ramda-adjunct/1.14.0|v1.14.0}
  9. * @deprecated since v2.12.0; ramda@0.26.0 contains hasPath
  10. * @category Object
  11. * @typedef Idx = String | Int
  12. * @sig [Idx] -> {a} -> Boolean
  13. * @param {Array.<string|number>} path The path of the nested property
  14. * @param {Object} obj The object to test
  15. * @return {boolean}
  16. * @see {@link http://ramdajs.com/docs/#has|R.has}
  17. * @example
  18. *
  19. * RA.hasPath(['a', 'b'], { a: { b: 1 } }); //=> true
  20. * RA.hasPath(['a', 'b', 'c'], { a: { b: 1 } }); //=> false
  21. * RA.hasPath(['a', 'b'], { a: { } }); //=> false
  22. * RA.hasPath([0], [1, 2]); //=> true
  23. */
  24. const hasPath = curryN(2, (objPath, obj) => {
  25. const prop = head(objPath);
  26. // termination conditions
  27. if (length(objPath) === 0 || !isObj(obj)) {
  28. return false;
  29. }
  30. if (length(objPath) === 1) {
  31. return has(prop, obj);
  32. }
  33. return hasPath(tail(objPath), path([prop], obj)); // base case
  34. });
  35. export default hasPath;