A small implementation of `crypto.getRandomValues` for React Native. This is useful to polyfill for libraries like uuid that depend on it.
A cross-environment window.crypto.getRandomValues replacement
`window.crypto.getRandomValues` with fallback to Node.js crypto
This is a polyfill for `window.crypto.getRandomValues(). In place of
Math.random()it uses the [Mersenne Twister pseudorandom number generator](https://github.com/boo1ean/mersenne-twister) seeded by
Math.random()`.
React Native crypto.getRandomValues JSI implementation