mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-11-05 16:48:43 +00:00
19 lines
500 B
JavaScript
19 lines
500 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var GetIntrinsic = require('../GetIntrinsic');
|
||
|
|
||
|
var $TypeError = GetIntrinsic('%TypeError%');
|
||
|
|
||
|
var Get = require('./Get');
|
||
|
var ToBoolean = require('./ToBoolean');
|
||
|
var Type = require('./Type');
|
||
|
|
||
|
// https://ecma-international.org/ecma-262/6.0/#sec-iteratorcomplete
|
||
|
|
||
|
module.exports = function IteratorComplete(iterResult) {
|
||
|
if (Type(iterResult) !== 'Object') {
|
||
|
throw new $TypeError('Assertion failed: Type(iterResult) is not Object');
|
||
|
}
|
||
|
return ToBoolean(Get(iterResult, 'done'));
|
||
|
};
|