Some refactoring into separate files

This commit is contained in:
2024-05-13 22:03:05 +02:00
parent 012aac8004
commit 9f27771f55
3 changed files with 127 additions and 76 deletions

9
utils.js Normal file
View File

@@ -0,0 +1,9 @@
function uuidv4() {
return "10000000-1000-4000-8000-100000000000".replace(/[018]/g, c =>
(+c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> +c / 4).toString(16)
);
}
module.exports = {
uuidv4
}