main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
455 bytes
|
Rev | Line | |
---|
[d565449] | 1 | 'use strict';
|
---|
| 2 |
|
---|
| 3 | var $TypeError = require('es-errors/type');
|
---|
| 4 |
|
---|
| 5 | var Get = require('./Get');
|
---|
| 6 | var ToBoolean = require('./ToBoolean');
|
---|
[79a0317] | 7 |
|
---|
| 8 | var isObject = require('../helpers/isObject');
|
---|
[d565449] | 9 |
|
---|
| 10 | // https://262.ecma-international.org/6.0/#sec-iteratorcomplete
|
---|
| 11 |
|
---|
| 12 | module.exports = function IteratorComplete(iterResult) {
|
---|
[79a0317] | 13 | if (!isObject(iterResult)) {
|
---|
[d565449] | 14 | throw new $TypeError('Assertion failed: Type(iterResult) is not Object');
|
---|
| 15 | }
|
---|
| 16 | return ToBoolean(Get(iterResult, 'done'));
|
---|
| 17 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.