mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
36a8358ae7
Summary: beeper node modules has a `return` statement outside of a function which doesn't parse. To fix it, we mock it. Also, setupEnvPolyfills is no longer being used. Closes https://github.com/facebook/react-native/pull/2770 Reviewed By: @svcscm Differential Revision: D2448882 Pulled By: @vjeux
6 lines
174 B
JavaScript
6 lines
174 B
JavaScript
// beeper@1.1.0 has a return statement outside of a function
|
|
// and therefore doesn't parse. Let's mock it so that we can
|
|
// run the tests.
|
|
|
|
module.exports = function () {};
|