CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
lt.js30 linesDownload Raw Back to lodash
1var baseLt = require('./_baseLt'),2    createRelationalOperation = require('./_createRelationalOperation');3 4/**5 * Checks if `value` is less than `other`.6 *7 * @static8 * @memberOf _9 * @since 3.9.010 * @category Lang11 * @param {*} value The value to compare.12 * @param {*} other The other value to compare.13 * @returns {boolean} Returns `true` if `value` is less than `other`,14 *  else `false`.15 * @see _.gt16 * @example17 *18 * _.lt(1, 3);19 * // => true20 *21 * _.lt(3, 3);22 * // => false23 *24 * _.lt(3, 1);25 * // => false26 */27var lt = createRelationalOperation(baseLt);28 29module.exports = lt;30 
basant307/AI_Governance_Project · CoolFace