Generating UUIDs is now achievable in your web browser by utilizing JavaScript's Crypto API.
1const uuid = crypto.randomUUID();
With the advent of this capability, the extra loading time and deprecation risks associated with third-party libraries for UUID generation could be eliminated.