postiz/libraries/nestjs-libraries/src/services/make.is.ts

11 lines
287 B
TypeScript

export const makeId = (length: number) => {
let text = '';
const possible =
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
for (let i = 0; i < length; i += 1) {
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
};