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

6 lines
196 B
TypeScript
Raw Normal View History

2024-09-24 23:50:55 +05:30
const genAPIKey = () => {
//create a base-36 string that contains 30 chars in a-z,0-9
return [...Array(30)]
.map((e) => ((Math.random() * 36) | 0).toString(36))
.join('');
};