1
0
mirror of synced 2026-04-03 06:28:35 +08:00

chore: 更新依赖

This commit is contained in:
roymondchen
2024-10-31 14:20:47 +08:00
committed by roymondchen
parent aaba8bff03
commit 7cd1bc7aec
48 changed files with 1710 additions and 2045 deletions

View File

@@ -95,5 +95,5 @@ export const makeCamelCase = function (name: string): string {
if (typeof name !== 'string') {
return '';
}
return name.replace(/-(\w)/g, ($0, $1) => $1.toUpperCase());
return name.replace(/-(\w)/g, (_$0, $1) => $1.toUpperCase());
};