Initalize

This commit is contained in:
Your Name
2026-05-03 12:12:57 -04:00
commit 38652eb9b5
10603 changed files with 1762136 additions and 0 deletions

20
node_modules/md5-hex/index.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
import crypto from 'node:crypto';
export default function md5Hex(data) {
const hash = crypto.createHash('md5');
const update = buffer => {
const inputEncoding = typeof buffer === 'string' ? 'utf8' : undefined;
hash.update(buffer, inputEncoding);
};
if (Array.isArray(data)) {
for (const element of data) {
update(element);
}
} else {
update(data);
}
return hash.digest('hex');
}