UNPKG

@daysnap/utils

Version:
8 lines (6 loc) 153 B
/** * 首字母大写的驼峰 * pascalCase('hello-world') => HelloWorld */ declare function pascalCase(str: string): string; export { pascalCase };