murmur.js
v1.0.0
Published
Small murmur hash implementation
Readme
murmur.js
Small murmur hash implementation.
This hash is for content, not for security.
Written by: Gary Court
Install
npm install murmur.jsUse
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
