source:
node_modules/core-js-pure/internals/get-iterator-direct.js
Last change on this file was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 237 bytes |
Rev | Line | |
---|---|---|
[d24f17c] | 1 | 'use strict'; |
2 | // `GetIteratorDirect(obj)` abstract operation | |
3 | // https://tc39.es/proposal-iterator-helpers/#sec-getiteratordirect | |
4 | module.exports = function (obj) { | |
5 | return { | |
6 | iterator: obj, | |
7 | next: obj.next, | |
8 | done: false | |
9 | }; | |
10 | }; |
Note:
See TracBrowser
for help on using the repository browser.