Ramda Adjunct 2.30.0

lengthNotEq.js

  1. import { complement, equals } from 'ramda';
  2. import compareLength from './internal/compareLength';
  3. /**
  4. * Returns `true` if the supplied list or string has a length not equal to `valueLength`.
  5. *
  6. * @func lengthNotEq
  7. * @memberOf RA
  8. * @since {@link https://char0n.github.io/ramda-adjunct/2.8.0|v2.8.0}
  9. * @category List
  10. * @sig Number -> [*] -> Boolean
  11. * @param {number} valueLength The length of the list or string
  12. * @param {Array|string} value The list or string
  13. * @return {boolean}
  14. * @see {@link RA.lengthEq|lengthEq}, {@link RA.lengthLt|lengthLt}, {@link RA.lengthGt|lengthGt}, {@link RA.lengthLte|lengthLte}, {@link RA.lengthGte|lengthGte}, {@link http://ramdajs.com/docs/#equals|equals}, {@link http://ramdajs.com/docs/#length|length}
  15. * @example
  16. *
  17. * RA.lengthNotEq(3, [1,2,3,4]); //=> true
  18. * RA.lengthNotEq(3, [1,2,3]); //=> false
  19. */
  20. const lengthNotEq = compareLength(complement(equals));
  21. export default lengthNotEq;