X Tutup
Skip to content

fix(collection): MapIterator.next() is not supported (Safari)#3389

Closed
marclaval wants to merge 1 commit intoangular:masterfrom
marclaval:utMapIterator
Closed

fix(collection): MapIterator.next() is not supported (Safari)#3389
marclaval wants to merge 1 commit intoangular:masterfrom
marclaval:utMapIterator

Conversation

@marclaval
Copy link
Copy Markdown
Contributor

Fixes #3015 until we have polyfills working in Safari.

@marclaval marclaval added the action: review The PR is still awaiting reviews from at least one requested reviewer label Jul 30, 2015
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add a little unit test in collection_spec.ts

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is already a unit test for that in collection_spec.ts:

describe('MapWrapper', () => {
      it('should return a list of keys values', () => {
        var m = new Map();
        m.set('a', 'b');
        expect(MapWrapper.keys(m)).toEqual(['a']);
        expect(MapWrapper.values(m)).toEqual(['b']);
      });
    });

@tbosch tbosch added pr_state: LGTM action: cleanup The PR is in need of cleanup, either due to needing a rebase or in response to comments from reviews and removed action: review The PR is still awaiting reviews from at least one requested reviewer labels Jul 30, 2015
@marclaval marclaval closed this in 12e4c73 Aug 3, 2015
@marclaval marclaval deleted the utMapIterator branch December 11, 2017 10:19
@angular-automatic-lock-bot
Copy link
Copy Markdown

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Sep 13, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

action: cleanup The PR is in need of cleanup, either due to needing a rebase or in response to comments from reviews cla: yes

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Bootstrap throws errors in safari

3 participants

X Tutup