Symbol.iterator doesn't work on Safari Version 8.0 (10600.1.25.1)
See original GitHub issueSymbol = require('es6-symbol')
array = [1, 2, 3]
array[Symbol.iterator]
// returns undefined
Issue Analytics
- State:
- Created 8 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
If Safari on Mac doesn't open a webpage or isn't working as ...
A webpage is blank, doesn't show all of its content, or doesn't work as expected; You can't sign in to a webpage, despite...
Read more >Yosemite 10.10.1 causing Safari not to pl…
Last night I updated Yosemite to 10.10.1 and now all of a sudden Safari Version 8.0 (10600.1.25.1) won't play any YouTube videos.
Read more >Update to the latest version of Safari
If a Safari update is available for your device, you can get it by updating or upgrading macOS, iOS, or iPadOS.
Read more >Troubleshooting your Safari web extension
Enable the Safari web extension in macOS. Open Safari and choose Safari > Preferences. Select the Extensions tab, find your extension, and select...
Read more >If AutoFill doesn't work in Safari on Mac
To turn AutoFill off, choose Safari > Settings, click AutoFill, then deselect the information you want to enter manually. See alsoUpdate contact information...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

For that you need to ensure that
Array.prototype[@@iterator]is implemented. es6-symbol, doesn’t fix any native implementation by default (same way you don’t haveSymbolconstructor available).You can achieve what you want two ways:
1. Without fixing native environment
2. With fixing native env
No error is thrown, the tv stops parsing any is after symbol() is used
On Wed, 29 Jan 2020 at 12:37, Mariusz Nowak notifications@github.com wrote:
–
Kind regards
Nikos Katsikanis