1.0.0 • Published 8 years ago

murmur.js v1.0.0

Weekly downloads
5
License
-
Repository
github
Last release
8 years ago

murmur.js

Small murmur hash implementation.

This hash is for content, not for security.

Written by: Gary Court

Install

npm install murmur.js

Use

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