Files
parcer/server/src/api/index.ts
karishmas6 61d65b1e26 chore: lint
2024-09-24 23:51:36 +05:30

5 lines
134 B
TypeScript

const genAPIKey = () => {
return [...Array(30)]
.map((e) => ((Math.random() * 36) | 0).toString(36))
.join('');
};