export function toUpper(text: string) {
  return (text || "").toUpperCase();
}
