blob: 182fdc87f7a3509804f44a823d2d1491772996da [file] [log] [blame]
import crypto from 'crypto';
function MD5(string) {
return crypto.createHash('md5').update(string).digest('hex');
}
export default MD5;