Ramda Adjunct 2.6.0

isNilOrEmpty.js

  1. import { either, isEmpty, isNil } from 'ramda';
  2. /**
  3. * Returns `true` if the given value is its type's empty value, `null` or `undefined`.
  4. *
  5. * @func isNilOrEmpty
  6. * @memberOf RA
  7. * @since {@link https://char0n.github.io/ramda-adjunct/0.4.0|v0.4.0}
  8. * @category Type
  9. * @sig * -> Boolean
  10. * @param {*} val The value to test
  11. * @return {boolean}
  12. * @see {@link http://ramdajs.com/docs/#isEmpty|isEmpty}, {@link http://ramdajs.com/docs/#isNil|isNil}
  13. * @example
  14. *
  15. * RA.isNilOrEmpty([1, 2, 3]); //=> false
  16. * RA.isNilOrEmpty([]); //=> true
  17. * RA.isNilOrEmpty(''); //=> true
  18. * RA.isNilOrEmpty(null); //=> true
  19. * RA.isNilOrEmpty(undefined): //=> true
  20. * RA.isNilOrEmpty({}); //=> true
  21. * RA.isNilOrEmpty({length: 0}); //=> false
  22. */
  23. const isNilOrEmpty = either(isNil, isEmpty);
  24. export default isNilOrEmpty;