/murmurhash3js-revisited

JavaScript implementation of MurmurHash3 that matches the C++ reference.

Primary LanguageJavaScriptMIT LicenseMIT

murmurhash3js-revisited

JavaScript implementation of the MurmurHash3 algorithms.

All the other JS murmurhash3 implementations I've tried either didn't match the C++ reference implementation in all cases or didn't implement all three variants (x86 32bit, x86 128bit and x64 128bit).

This implementation was forked from pid/murmurhash3js. The core algorithm is the same, but there is one important distinction: all variants now expect an array of bytes (i.e. Uint8 or just plain numbers between 0 and 255) as input instead of a string.

Authors

Other implementations