export function toLower(text: string) {
  return (text || "").toLowerCase();
}
