Ignore:
Timestamp:
01/21/25 03:08:24 (3 days ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
0c6b92a
Message:

F4 Finalna Verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/es-abstract/2024/GetIterator.js

    r0c6b92a r79a0317  
    1414var GetMethod = require('./GetMethod');
    1515var IsArray = require('./IsArray');
     16
     17var ES = {
     18        AdvanceStringIndex: AdvanceStringIndex,
     19        GetMethod: GetMethod,
     20        IsArray: IsArray
     21};
    1622
    1723var getIteratorMethod = require('../helpers/getIteratorMethod');
     
    3238        if (typeof method === 'undefined') { // step 1.b
    3339                // var syncMethod = GetMethod(obj, $iterator); // step 1.b.i
    34                 var syncMethod = getIteratorMethod(
    35                         {
    36                                 AdvanceStringIndex: AdvanceStringIndex,
    37                                 GetMethod: GetMethod,
    38                                 IsArray: IsArray
    39                         },
    40                         obj
    41                 );
     40                var syncMethod = getIteratorMethod(ES, obj);
    4241                if (kind === 'ASYNC') {
    4342                        if (typeof syncMethod === 'undefined') {
Note: See TracChangeset for help on using the changeset viewer.