Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_setToPairs.js 364B

123456789101112131415161718
  1. /**
  2. * Converts `set` to its value-value pairs.
  3. *
  4. * @private
  5. * @param {Object} set The set to convert.
  6. * @returns {Array} Returns the value-value pairs.
  7. */
  8. function setToPairs(set) {
  9. var index = -1,
  10. result = Array(set.size);
  11. set.forEach(function(value) {
  12. result[++index] = [value, value];
  13. });
  14. return result;
  15. }
  16. module.exports = setToPairs;