All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.lodash._iteratorToArray.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
/**
 * Converts `iterator` to an array.
 *
 * @private
 * @param {Object} iterator The iterator to convert.
 * @returns {Array} Returns the converted array.
 */
function iteratorToArray(iterator) {
  var data,
      result = [];

  while (!(data = iterator.next()).done) {
    result.push(data.value);
  }
  return result;
}

module.exports = iteratorToArray;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy