Add polyfill for Symbol.asyncIterator (#1642)

* Add polyfill for Symbol.asyncIterator

* Create tame-dancers-fail.md

* Format
This commit is contained in:
Nathan Bierema 2024-03-28 12:20:08 -04:00 committed by GitHub
parent 8f166edc73
commit 138f4f37b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
'@redux-devtools/remote': patch
---
Fix Hermes support by adding polyfill for Symbol.asyncIterator

View File

@ -1,3 +1,6 @@
(Symbol as any).asyncIterator =
Symbol.asyncIterator || Symbol.for('Symbol.asyncIterator');
import { stringify, parse } from 'jsan';
import socketClusterClient, { AGClientSocket } from 'socketcluster-client';
import configureStore from './configureStore';