CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
_addSetEntry.js16 linesDownload Raw Back to lodash-es
1/**2 * Adds `value` to `set`.3 *4 * @private5 * @param {Object} set The set to modify.6 * @param {*} value The value to add.7 * @returns {Object} Returns `set`.8 */9function addSetEntry(set, value) {10  // Don't return `set.add` because it's not chainable in IE 11.11  set.add(value);12  return set;13}14 15export default addSetEntry;16