No need for JS modules to generate UUID v4 IDs anymore because it can be done natively in the browser by using WebCrypto,
let uuid = self.crypto.randomUUID();
console.log(uuid);
No need for JS modules to generate UUID v4 IDs anymore because it can be done natively in the browser by using WebCrypto,
let uuid = self.crypto.randomUUID();
console.log(uuid);