CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
_createRelationalOperation.js21 linesDownload Raw Back to lodash-es
1import toNumber from './toNumber.js';2 3/**4 * Creates a function that performs a relational operation on two values.5 *6 * @private7 * @param {Function} operator The function to perform the operation.8 * @returns {Function} Returns the new relational operation function.9 */10function createRelationalOperation(operator) {11  return function(value, other) {12    if (!(typeof value == 'string' && typeof other == 'string')) {13      value = toNumber(value);14      other = toNumber(other);15    }16    return operator(value, other);17  };18}19 20export default createRelationalOperation;21 
basant307/AI_Governance_Project · CoolFace