source:
imaps-frontend/node_modules/core-js/internals/get-iterator-direct.js
Last change on this file was 79a0317, checked in by , 2 weeks 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.