No Issue - Implement crypto.randomUUID

We already have code in the platform to generate random UUIDs. This simply exposes that functionality via the crypto.UUID function
This commit is contained in:
Basilisk-Dev 2023-10-25 13:39:53 -04:00 committed by roytam1
commit 9e6a0c089f
3 changed files with 27 additions and 0 deletions

View file

@ -18,4 +18,7 @@ interface Crypto {
[Throws]
ArrayBufferView getRandomValues(ArrayBufferView array);
[SecureContext]
DOMString randomUUID();
};