CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
_stackDelete.js19 linesDownload Raw Back to lodash
1/**2 * Removes `key` and its value from the stack.3 *4 * @private5 * @name delete6 * @memberOf Stack7 * @param {string} key The key of the value to remove.8 * @returns {boolean} Returns `true` if the entry was removed, else `false`.9 */10function stackDelete(key) {11  var data = this.__data__,12      result = data['delete'](key);13 14  this.size = data.size;15  return result;16}17 18module.exports = stackDelete;19 
basant307/AI_Governance_Project · CoolFace