fix: Not sure why this is here, but it breaks my webpack build.

This commit is contained in:
Karissa McKelvey 2021-05-12 11:45:45 -07:00
parent 7ef6e52870
commit 70ed3dafd6

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
})() })()