You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
'use strict'
|
|
var MurmurHash3 = require('imurmurhash')
|
|
|
|
module.exports = function (uniq) {
|
|
if (uniq) {
|
|
var hash = new MurmurHash3(uniq)
|
|
return ('00000000' + hash.result().toString(16)).substr(-8)
|
|
} else {
|
|
return (Math.random().toString(16) + '0000000').substr(2, 8)
|
|
}
|
|
}
|