PR-URL: https://github.com/nodejs/node/pull/44486 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
12 lines
286 B
JavaScript
12 lines
286 B
JavaScript
'use strict'
|
|
var MurmurHash3 = require('imurmurhash')
|
|
|
|
module.exports = function (uniq) {
|
|
if (uniq) {
|
|
var hash = new MurmurHash3(uniq)
|
|
return ('00000000' + hash.result().toString(16)).slice(-8)
|
|
} else {
|
|
return (Math.random().toString(16) + '0000000').slice(2, 10)
|
|
}
|
|
}
|