Files
hoppscotch/packages/hoppscotch-common/src/helpers/utils/uniqueID.ts
2024-03-13 17:11:51 +05:30

4 lines
102 B
TypeScript

export const uniqueID = (length = 16) => {
return Math.random().toString(36).substring(2, length)
}