merge main

This commit is contained in:
zxhlyh
2025-07-22 13:52:24 +08:00
40 changed files with 1066 additions and 158 deletions

View File

@ -90,3 +90,7 @@ export const formatNumberAbbreviated = (num: number) => {
}
}
}
export const snakeCase2CamelCase = (input: string): string => {
return input.replace(/_([a-z])/g, (_, letter) => letter.toUpperCase())
}