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

package.internals.iterate-simple.js Maven / Gradle / Ivy

The newest version!
'use strict';
var call = require('../internals/function-call');

module.exports = function (record, fn, ITERATOR_INSTEAD_OF_RECORD) {
  var iterator = ITERATOR_INSTEAD_OF_RECORD ? record : record.iterator;
  var next = record.next;
  var step, result;
  while (!(step = call(next, iterator)).done) {
    result = fn(step.value);
    if (result !== undefined) return result;
  }
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy