1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:27:45 +00:00

LibWeb: Add Crypto.randomUUID()

This commit is contained in:
stelar7 2022-03-30 15:58:02 +02:00 committed by Andreas Kling
parent 9a60b697aa
commit b526a10d76
3 changed files with 58 additions and 0 deletions

View file

@ -6,4 +6,6 @@ interface Crypto {
// FIXME: the argument and the return value should be of type ArrayBufferView
any getRandomValues(any array);
[SecureContext] DOMString randomUUID();
};