We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e96071e commit 1f322caCopy full SHA for 1f322ca
index.js
@@ -53,7 +53,6 @@ function escapeFunctionBody(str) {
53
54
function generateUID() {
55
var bytes = crypto.getRandomValues(new Uint8Array(UID_LENGTH));
56
- crypto.webcrypto.getRandomValues(bytes);
57
var result = '';
58
for(var i=0; i<UID_LENGTH; ++i) {
59
result += bytes[i].toString(16);
0 commit comments