Updating node_modules

This commit is contained in:
Chris Raynor 2020-09-29 15:05:16 +01:00
parent 8200c137dc
commit 47fa956a52
No known key found for this signature in database
GPG key ID: 579A1FBC36FDA261
87 changed files with 3011 additions and 260 deletions

13
node_modules/uuid/dist/esm-node/md5.js generated vendored Normal file
View file

@ -0,0 +1,13 @@
import crypto from 'crypto';
function md5(bytes) {
if (Array.isArray(bytes)) {
bytes = Buffer.from(bytes);
} else if (typeof bytes === 'string') {
bytes = Buffer.from(bytes, 'utf8');
}
return crypto.createHash('md5').update(bytes).digest();
}
export default md5;