CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
_setCacheHas.js15 linesDownload Raw Back to lodash-es
1/**2 * Checks if `value` is in the array cache.3 *4 * @private5 * @name has6 * @memberOf SetCache7 * @param {*} value The value to search for.8 * @returns {boolean} Returns `true` if `value` is found, else `false`.9 */10function setCacheHas(value) {11  return this.__data__.has(value);12}13 14export default setCacheHas;15 
basant307/AI_Governance_Project · CoolFace