mirror of
https://github.com/tinyauthapp/tinyauth.git
synced 2026-08-25 23:03:35 +08: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";
|