Native implementation of the non-cryptographic murmur hash using FFI
npm install murmur-hash-ffiA Rust implementation of the non-cryptographic murmur hash, with a node interface provided via FFI.
``javascript
var murmur = require('murmur-hash-ffi');
console.log(murmur('cheese'));
console.log(murmur('beans', 42));
``