CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
_baseGt.js15 linesDownload Raw Back to lodash
1/**2 * The base implementation of `_.gt` which doesn't coerce arguments.3 *4 * @private5 * @param {*} value The value to compare.6 * @param {*} other The other value to compare.7 * @returns {boolean} Returns `true` if `value` is greater than `other`,8 *  else `false`.9 */10function baseGt(value, other) {11  return value > other;12}13 14module.exports = baseGt;15 
basant307/AI_Governance_Project · CoolFace