This commit is contained in:
rae
2023-07-19 17:12:22 +02:00
committed by GitHub
-6
View File
@@ -20,12 +20,6 @@ var randombytes = (function () {
if (crypto && crypto.getRandomValues) return browserBytes if (crypto && crypto.getRandomValues) return browserBytes
if (require != null) {
// Node.js. Bust Browserify
crypto = require('cry' + 'pto')
if (crypto && crypto.randomBytes) return nodeBytes
}
return noImpl return noImpl
})() })()