UNPKG

rechnik

Version:
6 lines (4 loc) 190 B
export const cleanString = (str: string) => str.trim().replace(/\n/g, ' ').replace(/ +/g, ' '); export const cammilify = (str: string) => str.charAt(0).toUpperCase() + str.slice(1);