'use strict';
const { or } = require('ramda');
const polyfill = require('./internal/polyfills/Number.isNaN');
/**
* Checks whether the passed value is `NaN` and its type is `Number`.
* It is a more robust version of the original, global isNaN().
*
*
* @func isNaN
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/0.6.0|v0.6.0}
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotNaN|isNotNaN}
* @example
*
* RA.isNaN(NaN); // => true
* RA.isNaN(Number.NaN); // => true
* RA.isNaN(0 / 0); // => true
*
* // e.g. these would have been true with global isNaN().
* RA.isNaN('NaN'); // => false
* RA.isNaN(undefined); // => false
* RA.isNaN({}); // => false
* RA.isNaN('blabla'); // => false
*
* RA.isNaN(true); // => false
* RA.isNaN(null); // => false
* RA.isNaN(37); // => false
* RA.isNaN('37'); // => false
* RA.isNaN('37.37'); // => false
* RA.isNaN(''); // => false
* RA.isNaN(' '); // => false
*/
module.exports = or(Number.isNaN, polyfill);