Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/matthewmueller/murmur.js

Small murmur hash implementation.
https://github.com/matthewmueller/murmur.js

Last synced: about 1 month ago
JSON representation

Small murmur hash implementation.

Awesome Lists containing this project

README

        

# murmur.js

Small murmur hash implementation.

This hash is for content, not for security.

Written by: [Gary Court](https://github.com/garycourt)

## Install

```
npm install murmur.js
```

## Use

```js
let murmur = require('murmur.js')
let hash = murmur('some content')

// hash will be the same when the content is the same
murmur('some content') === murmur('some content')
murmur({ hello: 'world' }) === murmur({ hello: 'world' })
```

## License

MIT