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.
13 lines
381 B
13 lines
381 B
4 weeks ago
|
'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;
|
||
|
}
|
||
|
};
|