mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 23:37:18 -04:00
16 lines
330 B
JavaScript
16 lines
330 B
JavaScript
/**
|
|
* Adds `value` to `set`.
|
|
*
|
|
* @private
|
|
* @param {Object} set The set to modify.
|
|
* @param {*} value The value to add.
|
|
* @returns {Object} Returns `set`.
|
|
*/
|
|
function addSetEntry(set, value) {
|
|
// Don't return `set.add` because it's not chainable in IE 11.
|
|
set.add(value);
|
|
return set;
|
|
}
|
|
|
|
module.exports = addSetEntry;
|