Package Exports
- murmur-32
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (murmur-32) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
MurmurHash3 32-bit
MurmurHash3 x86 32-bit implemented in JavaScript.
Installation
npm install --save murmur-32
Usage
const murmur32 = require('murmur-32')
murmur32('linus')
//=> ArrayBuffer { 4 }
murmur32(new ArrayBuffer(10))
//=> ArrayBuffer { 4 }
API
murmur32(key: ArrayBuffer | string) => ArrayBuffer
Compute the 32-bit MurmurHash3 of the supplied key
. If the key
is given as
string it will be encoded using the UTF8 encoding.
See also
- murmur-128 - MurmurHash3 x86 128-bit implemented in JavaScript