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

实现 转小驼峰 Camel Case;转大驼峰 Pascal Case;transformText 函数通过测试用例

This commit is contained in:
2024-04-02 22:30:45 +08:00
parent 181d2b4c6f
commit c7a16581ab
5 changed files with 108 additions and 27 deletions

View File

@@ -0,0 +1,6 @@
export type TransformTextResult = {
leadingSpace: string
trailingSpace: string
result: string
trimResult: string
};