Browse
For agents
About
Genesis Blocks
/
trunk
Genesis Blocks
vtrunk
Switch version
3.1.11
trunk
1.0.0
1.1.0
1.1.1
1.2.0
1.2.1
1.2.2
1.2.3
1.2.4
1.2.5
1.3.0
1.4.0
1.5.0
1.5.1
1.5.2
1.5.3
1.5.4
1.5.5
2.0.0
3.0.0
3.0.1
3.1.0
3.1.1
3.1.10
All 32 releases
Overview
Code
genesis-blocks
/
src
/
utils
/
helpers
/
generate-unique-id.js
generate-unique-id.js
in Genesis Blocks trunk, at src/utils/helpers/generate-unique-id.js
7 lines
154 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
import
md5
from
'
md5
'
;
2
3
//
Generate a unique ID for the notice block
4
export
default
function
generateUniqueID
(
input
)
{
5
return
md5
(
input
)
.
substr
(
0
,
6
)
;
6
}
7