summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/workers/worker_crypto.js
blob: 4398ad068530a7166a156cb22ca7b64f7eb36056 (plain)
1
2
3
4
5
self.crypto.getRandomValues(new Uint8Array(16));

onmessage = function () {
  postMessage(!!self.crypto);
};