Ramda Adjunct 2.30.0

isFinite.js

  1. import { bind, curryN } from 'ramda';
  2. import isFunction from './isFunction';
  3. import ponyfill from './internal/ponyfills/Number.isFinite';
  4. export const isFinitePonyfill = curryN(1, ponyfill);
  5. /**
  6. * Checks whether the passed value is a finite `Number`.
  7. *
  8. * @func isFinite
  9. * @memberOf RA
  10. * @since {@link https://char0n.github.io/ramda-adjunct/0.7.0|v0.7.0}
  11. * @category Type
  12. * @sig * -> Boolean
  13. * @param {*} val The value to test
  14. * @return {boolean}
  15. * @see {@link RA.isNotFinite|isNotFinite}
  16. * @example
  17. *
  18. * RA.isFinite(Infinity); //=> false
  19. * RA.isFinite(NaN); //=> false
  20. * RA.isFinite(-Infinity); //=> false
  21. *
  22. * RA.isFinite(0); // true
  23. * RA.isFinite(2e64); // true
  24. *
  25. * RA.isFinite('0'); // => false
  26. * // would've been true with global isFinite('0')
  27. * RA.isFinite(null); // => false
  28. * // would've been true with global isFinite(null)
  29. */
  30. const _isFinite = isFunction(Number.isFinite)
  31. ? curryN(1, bind(Number.isFinite, Number))
  32. : isFinitePonyfill;
  33. export default _isFinite;