chore: lint

This commit is contained in:
karishmas6
2024-09-24 23:51:36 +05:30
parent f68c61c0ec
commit 61d65b1e26

View File

@@ -1,6 +1,5 @@
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('');
};
.map((e) => ((Math.random() * 36) | 0).toString(36))
.join('');
};