murmur-128
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

MurmurHash3 128-bit

MurmurHash3 x86 128-bit implemented in JavaScript.

Installation

npm install --save murmur-128

Usage

import murmur128 from 'murmur-128'

murmur128('linus')
//=> ArrayBuffer { 16 }

murmur128(new ArrayBuffer(10))
//=> ArrayBuffer { 16 }

API

murmur128(key)

  • key (ArrayBuffer | string, required)
  • returns ArrayBuffer

Compute the 128-bit MurmurHash3 of the supplied key. If the key is given as a string it will be encoded using the UTF8 encoding.

See also

  • murmur-32 - MurmurHash3 x86 32-bit implemented in JavaScript

Package Sidebar

Install

npm i murmur-128

Weekly Downloads

42,673

Version

1.0.0

License

MIT

Unpacked Size

7.76 kB

Total Files

6

Last publish

Collaborators

  • linusu