1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00
ssh-key-action/node_modules/unique-slug/index.js
2019-09-18 20:39:54 +09:00

11 lines
287 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)).substr(-8)
} else {
return (Math.random().toString(16) + '0000000').substr(2, 8)
}
}