1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| /**
| * 将字符串的首字母大写
| * @param string
| */
| function capitalizeFirstLetter(string: string): string {
| return string.charAt(0).toUpperCase() + string.slice(1);
| }
|
| /**
| * 将字符串的首字母转换为小写。
| *
| * @param str 要转换的字符串
| * @returns 首字母小写的字符串
| */
| function toLowerCaseFirstLetter(str: string): string {
| if (!str) return str; // 如果字符串为空,直接返回
| return str.charAt(0).toLowerCase() + str.slice(1);
| }
|
| /**
| * 生成驼峰命名法的键名
| * @param key
| * @param parentKey
| */
| function toCamelCase(key: string, parentKey: string): string {
| if (!parentKey) {
| return key;
| }
| return parentKey + key.charAt(0).toUpperCase() + key.slice(1);
| }
|
| function kebabToCamelCase(str: string): string {
| return str
| .split('-')
| .filter(Boolean)
| .map((word, index) =>
| index === 0 ? word : word.charAt(0).toUpperCase() + word.slice(1),
| )
| .join('');
| }
|
| export {
| capitalizeFirstLetter,
| kebabToCamelCase,
| toCamelCase,
| toLowerCaseFirstLetter,
| };
|
|