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/2023/GetIterator.js

    r0c6b92a r79a0317  
    1717var getIteratorMethod = require('../helpers/getIteratorMethod');
    1818
     19var ES = {
     20        AdvanceStringIndex: AdvanceStringIndex,
     21        GetMethod: GetMethod,
     22        IsArray: IsArray
     23};
     24
    1925// https://262.ecma-international.org/14.0/#sec-getiterator
    2026
     
    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.