UNPKG
mp_common
Version:
latest (1.7.1)
1.7.1
1.6.1
1.5.1
1.5.0
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
magicalpixi common lib
github.com/MagicalPixi/common
mp_common
/
lib
/
encode.js
8 lines
(6 loc)
•
158 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
=
(
key
) =>
{
return
text
=>
{
var
crypto =
require
(
'crypto'
)
return
crypto.
createHash
(
'md5'
).
update
(text + key).
digest
(
'hex'
) } }