主题
将字符串转换为首字母大写格式
给定一个字符串,返回首字母大写、其他字母小写的版本。
import { capitalize } from 'radash' capitalize('green fish blue FISH') // => Green fish blue fish