This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
2020-11-01 22:46:04 +00:00

13 lines
317 B
HTML

<!doctype html>
<html>
<script src=bundle.js></script>
<body>
<pre>
require('crypto').createHash('sha1').update('abc').digest('hex') == '<span id=ans></span>'
</pre>
</body>
<script>
document.getElementById('ans').innerHTML = require('crypto').createHash('sha1').update('abc').digest('hex')
</script>
</html>