Repository URL to install this package:
|
Version:
6.0.4 ▾
|
declare const _default: import("../fp/curry").CurriedFunction1<{}, boolean>;
/**
* @name isEven
* @desc isEven
* @param {number | any} x value to check
* @return {boolean} isEven
*
* @extends isOdd
* @variations inverse
*
* @example
*
* isEven(1)
* //=> false
* isEven(2)
* //=> true
*
* var rando = Math.floor(Math.random(0, 10000))
* isEven(rando) !== isOdd(rando)
* //=> true
*
*/
export default _default;