amis-rpc-design/node_modules/core-js/internals/iterate-simple.js

13 lines
381 B
JavaScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
'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;
}
};