feat: performance optimization (#22810)

This commit is contained in:
Wu Tianwei
2025-07-23 16:04:46 +08:00
committed by GitHub
parent cf07189bd2
commit a366de26c4
30 changed files with 138 additions and 83 deletions

View File

@@ -56,7 +56,3 @@ export const downloadFile = ({ data, fileName }: { data: Blob; fileName: string
a.remove()
window.URL.revokeObjectURL(url)
}
export const snakeCase2CamelCase = (input: string): string => {
return input.replace(/_([a-z])/g, (_, letter) => letter.toUpperCase())
}