23 lines
611 B
HTML
23 lines
611 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Primes</title>
|
|
<meta charset="UTF-8" />
|
|
</head>
|
|
<body>
|
|
<div id="syncPrime">result of primeSync() will show up here</div>
|
|
<div id="asyncPrime">result of prime() will show up here</div>
|
|
|
|
<script src="../../dist/bigint-crypto-utils-latest.browser.min.js"></script>
|
|
<script>
|
|
(async () => {
|
|
document.getElementById(
|
|
"syncPrime"
|
|
).innerHTML = bigintCryptoUtils.primeSync(123);
|
|
document.getElementById(
|
|
"asyncPrime"
|
|
).innerHTML = await bigintCryptoUtils.prime(123);
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html> |