source:
node_modules/core-js-pure/internals/get-iterator-direct.js@
d24f17c
Last change on this file since d24f17c was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 237 bytes |
Line | |
---|---|
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.