CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
_baseIsNaN.js13 linesDownload Raw Back to lodash
1/**2 * The base implementation of `_.isNaN` without support for number objects.3 *4 * @private5 * @param {*} value The value to check.6 * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.7 */8function baseIsNaN(value) {9  return value !== value;10}11 12module.exports = baseIsNaN;13 
basant307/AI_Governance_Project · CoolFace