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

新增 空格分隔 + 小驼峰/大驼峰/全小写/全大写;修正 KEBAB_PASCAL_CASE, KEBAB_UPPER_CASE 关键词错误;添加测试用例并通过测试用例

This commit is contained in:
zhangbk1
2024-04-07 14:48:54 +08:00
parent ef42f97944
commit 62b9acc38f
9 changed files with 310 additions and 10 deletions

View File

@@ -14,14 +14,22 @@ export type TestCase = {
output: {
camelCase: string
pascalCase: string
snakeCase: string
snakeCamelCase: string
snakePascalCase: string
snakeUpperCase: string
kebabCase: string
kebabCamelCase: string
kebabPascalCase: string
kebabUpperCase: string
spaceCase: string
spaceCamelCase: string
spacePascalCase: string
spaceUpperCase: string
lowerCase?: string
upperCase?: string
}