Nouvelle version, ne nécessitant que la saisie d'un pseudo (plus besoin de créer un compte)

This commit is contained in:
2023-11-17 15:30:14 +01:00
parent e844fbf3b0
commit b40e1ac934
138 changed files with 3926 additions and 8660 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;