1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

调整右键菜单顺序

This commit is contained in:
2024-04-04 15:35:25 +08:00
parent 9105f2c6a0
commit e709a41697
4 changed files with 95 additions and 85 deletions

View File

@@ -144,7 +144,7 @@ export const toCamelKebabCase: ConvertFunction = (str: string, eol: EOL): string
};
/**
* 转连字符命名大写 to Kebab Upper Case
* 转连字符大写命名 to Kebab Upper Case
*
* @param {string} str user selection
* @returns

View File

@@ -58,7 +58,7 @@ export enum SupportCase {
CAMEL_UPPER_CASE,
/**
* 连字符命名大写
* 连字符大写命名
* Kebab Upper Case
* e.g. FOO-BAR
*
@@ -88,7 +88,7 @@ export enum SupportCase {
CAMEL_SNAKE_CASE,
/**
* 下划线大写
* 下划线大写命名
* Snake Upper Case
* e.g. FOO_BAR
*