am developing a mobile app using React native, which involves an interaction with web3.js
and Problem is RN does not support core Node.js modules, so I had to install
npm i --save react-native-crypto
npm i --save react-native-randombytes
react-native link react-native-randombytes
npm i --save-dev rn-nodeify@latest
./node_modules/.bin/rn-nodeify --hack --install
and now I face this error whenever I try to use crypto or web3.js

Any clue what's the issue or maybe how to resolve it ?