String
Convert a string to a capitalized format
Given a string returns it with the first letter upper cased and all other letters lower cased.
import { capitalize } from 'radash' capitalize('green fish blue FISH') // => Green fish blue fish