js 首字母大小 你的Maya 2023-03-10 301 阅读1分钟 // 首字母大小 export function titleCase(str) { return str.replace(/( |^)[a-z]/g, L => L.toUpperCase()) }