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

5 lines
134 B
TypeScript
Raw Normal View History

2024-09-24 23:50:55 +05:30
const genAPIKey = () => {
return [...Array(30)]
2024-09-24 23:51:36 +05:30
.map((e) => ((Math.random() * 36) | 0).toString(36))
.join('');
};