UNPKG

@fleetbase/sdk

Version:
8 lines (5 loc) 215 B
export const uuid = () => { const S4 = () => (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1); return `${S4() + S4()}-${S4()}-${S4()}-${S4()}-${S4()}${S4()}${S4()}`; }; export default uuid;