Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

18 lines
364 B

  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;