Ramda Adjunct 2.30.0

lensEq.js

  1. import { view, curryN, equals, pipe } from 'ramda';
  2. /**
  3. * Returns `true` if data structure focused by the given lens equals provided value.
  4. *
  5. * @func lensEq
  6. * @memberOf RA
  7. * @since {@link https://char0n.github.io/ramda-adjunct/1.13.0|1.13.0}
  8. * @category Relation
  9. * @typedef Lens s a = Functor f => (a -> f a) -> s -> f s
  10. * @sig Lens s a -> b -> s -> Boolean
  11. * @see {@link RA.lensNotEq|lensNotEq}
  12. * @param {function} lens Van Laarhoven lens
  13. * @param {*} value The value to compare the focused data structure with
  14. * @param {*} data The data structure
  15. * @return {boolean} `true` if the focused data structure equals value, `false` otherwise
  16. *
  17. * @example
  18. *
  19. * RA.lensEq(R.lensIndex(0), 1, [0, 1, 2]); // => false
  20. * RA.lensEq(R.lensIndex(1), 1, [0, 1, 2]); // => true
  21. * RA.lensEq(R.lensPath(['a', 'b']), 'foo', { a: { b: 'foo' } }) // => true
  22. */
  23. const lensEq = curryN(3, (lens, val, data) =>
  24. pipe(view(lens), equals(val))(data)
  25. );
  26. export default lensEq;