Sign in
apache
/
pouchdb
/
refs/heads/4071-return-of-code-coverage
/
.
/
lib
/
mapreduce
/
md5.js
blob: db83f6c15d2f98debf535d52a3e7811e76e47423 [
file
] [
log
] [
blame
]
'use strict'
;
var
crypto
=
require
(
'crypto'
);
module
.
exports
=
function
(
string
)
{
return
crypto
.
createHash
(
'md5'
).
update
(
string
).
digest
(
'hex'
);
};