Built with the patch, and it works without the performance.now polyfill.
const crypto = { getRandomValues: (array) => { for (let i = 0; i < array.length; i++) { array[i] = (Math.random()*256)|0; } }};