Adding the rest back in.
Some checks failed
Auto Maintenance Cycle / pre-commit Autoupdate (push) Failing after 34s

This commit is contained in:
2023-11-19 03:47:39 +01:00
parent 6e037d6837
commit ff32b18cc4
223 changed files with 34973 additions and 0 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;