I'm building a React app and have a need to generate unique UUIDs. I am trying to use the function randomUUID() from self.crypto. See: https://developer.mozilla.org/en-US/docs/Web/API/Crypto/randomUUID
If I don't want my code to explode if this runs in an unsupported browser, would this be sufficient?
function GenerateGuid() {
if (self && self.crypto) {
console.log(self.crypto.randomUUID());
}
else {
console.log("self.crypto not available");
}
}
GenerateGuid();
You should check for
randomUUIDto be available asCryptois release since 2011 andrandomUUIDsince 2021 (see Crypto - Browser compatibility). It is possible that you have a version withoutrandomUUID. Check it viatypeof. It returnsundefinedas a string and therefore fails. I dont see more things to test.