UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

9 lines 290 B
export const getRandomId = () => { if ('randomUUID' in crypto) { // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-ignore return crypto.randomUUID(); } const uint32 = window.crypto.getRandomValues(new Uint32Array(1))[0]; return uint32.toString(16); };