This repository has been archived on 2024-09-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
front/node_modules/es-abstract/2017/IteratorNext.js
2024-09-18 13:34:19 -03:00

17 lines
440 B
JavaScript

'use strict';
var $TypeError = require('es-errors/type');
var Invoke = require('./Invoke');
var Type = require('./Type');
// https://262.ecma-international.org/6.0/#sec-iteratornext
module.exports = function IteratorNext(iterator, value) {
var result = Invoke(iterator, 'next', arguments.length < 2 ? [] : [value]);
if (Type(result) !== 'Object') {
throw new $TypeError('iterator next must return an object');
}
return result;
};