mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
17 lines
318 B
HTML
17 lines
318 B
HTML
<html>
|
|
<head>
|
|
<title>murmurhash3js example</title>
|
|
<script src="../murmurhash3js.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>murmurHash3js example</h1>
|
|
|
|
<div id="foo">NA</div>
|
|
|
|
<script>
|
|
(document.getElementById('foo')).innerHTML = murmurHash3.x86.hash32("To Be or Not to Be.");
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|