ohash
ohash copied to clipboard
feat(crypto): re-added `murmurHash()` function
Issue https://github.com/unjs/ohash/issues/156 Partially reverts: https://github.com/unjs/ohash/pull/104
Re-added the murmurHash function:
import { murmurHash } from "ohash/murmur";
// "427197390"
console.log(murmurHash("Hello World"));
Added back the tests for the js implementations.
Updated README accordingly.
Can you please keep this for murmurHash and seperate sha256? seems so many changes on cryto-js part, hex addition shouldn't required this much..