UNPKG

@daysnap/utils

Version:
8 lines (6 loc) 132 B
/** * 驼峰 * camelCase('hello-world') => helloWorld */ declare function camelCase(str: string): string; export { camelCase };