Ramda Adjunct 2.33.0

isNotString.js

  1. import { complement } from 'ramda';
  2. import isString from './isString';
  3. /**
  4. * Checks if input value is complement of `String`.
  5. *
  6. * @func isNotString
  7. * @memberOf RA
  8. * @since {@link https://char0n.github.io/ramda-adjunct/0.4.0|v0.4.0}
  9. * @category Type
  10. * @sig * -> Boolean
  11. * @param {*} val The value to test
  12. * @return {boolean}
  13. * @see {@link RA.isString|isString}
  14. * @example
  15. *
  16. * RA.isNotString('abc'); //=> false
  17. * RA.isNotString(1); //=> true
  18. */
  19. const isNotString = complement(isString);
  20. export default isNotString;