You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running a ReactNative app on Android, a Set from core-js always return an undefined size, while the native Set implementation works fine.
The problem does not show up when debugging the Android app I think this is because in debug mode the JS code runs in the Chrome debugger (V8), while normally it runs in the JavaScriptCore engine.
The problem also does not show up when running on iOS simulator, which suggests it's some compatibility issue with the specific implementation of JavaScriptCore used on Android. I wasn't able to test on a real iOS device.
Running tests with jest (which runs on Node) also shows no problem.
Description
When running a ReactNative app on Android, a Set from core-js always return an
undefined
size, while the native Set implementation works fine.The problem does not show up when debugging the Android app I think this is because in debug mode the JS code runs in the Chrome debugger (V8), while normally it runs in the JavaScriptCore engine.
The problem also does not show up when running on iOS simulator, which suggests it's some compatibility issue with the specific implementation of JavaScriptCore used on Android. I wasn't able to test on a real iOS device.
Running tests with jest (which runs on Node) also shows no problem.
Steps to reproduce:
npm install
npm run android
The text was updated successfully, but these errors were encountered: