mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-10-29 05:05:42 +00:00
3 lines
169 B
TypeScript
3 lines
169 B
TypeScript
export const capitalize = (s: string) => s.charAt(0).toUpperCase() + s.slice(1);
|
|
export const isQueryValid = (value: string) => value.trim() !== "" && value !== "null";
|