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