This commit is contained in:
rae 2023-07-19 17:12:22 +02:00 committed by GitHub
commit b538ae6bb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,12 +20,6 @@ var randombytes = (function () {
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
})()