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.

_iteratorToArray.js 360B

123456789101112131415161718
  1. /**
  2. * Converts `iterator` to an array.
  3. *
  4. * @private
  5. * @param {Object} iterator The iterator to convert.
  6. * @returns {Array} Returns the converted array.
  7. */
  8. function iteratorToArray(iterator) {
  9. var data,
  10. result = [];
  11. while (!(data = iterator.next()).done) {
  12. result.push(data.value);
  13. }
  14. return result;
  15. }
  16. module.exports = iteratorToArray;