00001 00009 function addSetEntry(set, value) { 00010 // Don't return `set.add` because it's not chainable in IE 11. 00011 set.add(value); 00012 return set; 00013 } 00014 00015 module.exports = addSetEntry;