main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
1020 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | 'use strict';
|
---|
| 2 | var $ = require('../internals/export');
|
---|
| 3 | var call = require('../internals/function-call');
|
---|
| 4 | var toObject = require('../internals/to-object');
|
---|
| 5 | var isPrototypeOf = require('../internals/object-is-prototype-of');
|
---|
| 6 | var IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;
|
---|
| 7 | var createIteratorProxy = require('../internals/iterator-create-proxy');
|
---|
| 8 | var getIteratorFlattenable = require('../internals/get-iterator-flattenable');
|
---|
| 9 | var IS_PURE = require('../internals/is-pure');
|
---|
| 10 |
|
---|
| 11 | var IteratorProxy = createIteratorProxy(function () {
|
---|
| 12 | return call(this.next, this.iterator);
|
---|
| 13 | }, true);
|
---|
| 14 |
|
---|
| 15 | // `Iterator.from` method
|
---|
| 16 | // https://github.com/tc39/proposal-iterator-helpers
|
---|
| 17 | $({ target: 'Iterator', stat: true, forced: IS_PURE }, {
|
---|
| 18 | from: function from(O) {
|
---|
| 19 | var iteratorRecord = getIteratorFlattenable(typeof O == 'string' ? toObject(O) : O, true);
|
---|
| 20 | return isPrototypeOf(IteratorPrototype, iteratorRecord.iterator)
|
---|
| 21 | ? iteratorRecord.iterator
|
---|
| 22 | : new IteratorProxy(iteratorRecord);
|
---|
| 23 | }
|
---|
| 24 | });
|
---|
Note:
See
TracBrowser
for help on using the repository browser.