import { complement, curryN } from 'ramda'; import isFloat from './isFloat'; /** * Checks whether the passed value is complement of a `float`. * * @func isNotFloat * @memberOf RA * @since {@link https://char0n.github.io/ramda-adjunct/1.14.0|v1.14.0} * @category Type * @sig * -> Boolean * @param {*} val The value to test * @return {boolean} * @see {@link RA.isFloat|isFloat} * @example * * RA.isNotFloat(0); //=> true * RA.isNotFloat(1); //=> true * RA.isNotFloat(-100000); //=> true * * RA.isNotFloat(0.1); //=> false * RA.isNotFloat(Math.PI); //=> false * * RA.isNotFloat(NaN); //=> true * RA.isNotFloat(Infinity); //=> true * RA.isNotFloat(-Infinity); //=> true * RA.isNotFloat('10'); //=> true * RA.isNotFloat(true); //=> true * RA.isNotFloat(false); //=> true * RA.isNotFloat([1]); //=> true */ const isNotFloat = curryN(1, complement(isFloat)); export default isNotFloat;