Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/matthewmueller/murmur.js
- Owner: matthewmueller
- Created: 2016-09-13T09:18:20.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-13T09:18:48.000Z (about 8 years ago)
- Last Synced: 2024-09-24T18:46:54.992Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 1000 Bytes
- Stars: 14
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- Changelog: History.md
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