UNPKG

281 BJavaScriptView Raw
1import crypto from 'crypto';
2
3function md5(bytes) {
4 if (Array.isArray(bytes)) {
5 bytes = Buffer.from(bytes);
6 } else if (typeof bytes === 'string') {
7 bytes = Buffer.from(bytes, 'utf8');
8 }
9
10 return crypto.createHash('md5').update(bytes).digest();
11}
12
13export default md5;
\No newline at end of file