Sign in
apache
/
pouchdb
/
refs/heads/5122
/
.
/
src
/
mapreduce
/
md5.js
blob: 8db57f3d3547335743931d6d032ac16203e1faf7 [
file
]
import
crypto from
'crypto'
;
function
MD5
(
string
)
{
return
crypto
.
createHash
(
'md5'
).
update
(
string
,
'binary'
).
digest
(
'hex'
);
}
export
default
MD5
;