• 其他变量命名风格转小驼峰

    参数

    • value: string

    返回 string

    camelCase('HELLO-WORLD'); // 'helloWorld'
    camelCase('hello-World'); // 'helloWorld'
    camelCase('hello world'); // 'helloWorld'
    camelCase('Hello world'); // 'helloWorld'
    camelCase('Hello___world'); // 'helloWorld'