CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
_stackHas.js15 linesDownload Raw Back to lodash
1/**2 * Checks if a stack value for `key` exists.3 *4 * @private5 * @name has6 * @memberOf Stack7 * @param {string} key The key of the entry to check.8 * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.9 */10function stackHas(key) {11  return this.__data__.has(key);12}13 14module.exports = stackHas;15 
basant307/AI_Governance_Project · CoolFace