export function capitalize(s : string) { return s.charAt(0).toUpperCase() + s.substring(1) }