improved API request wrapper, partial completion of operations

This commit is contained in:
2025-03-13 15:15:43 -07:00
parent 7eec2adc7a
commit 17e0480f83
16 changed files with 320 additions and 282 deletions

View File

@@ -1,7 +1,7 @@
/**
* Generates a random string containing numbers and letters
*/
export const generateRandString = (length: number): string => {
const generateRandString = (length: number): string => {
const possible =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
let text = "";
@@ -11,3 +11,5 @@ export const generateRandString = (length: number): string => {
}
return text;
};
export { generateRandString };