Files
parcer/server/src/utils/api.ts

4 lines
131 B
TypeScript
Raw Normal View History

2024-09-26 17:15:35 +05:30
export const genAPIKey = (): string => {
return [...Array(30)].map(() => ((Math.random() * 36) | 0).toString(36)).join('');
};