Function isCamelCase

  • 判断是否是驼峰命名 包含大、小驼峰

    Parameters

    • str: string

    Returns boolean

    boolean

    Example

    isCamelCase("helloWorld") // true
    isCamelCase("HelloWorld") // true
    isCamelCase("hello_world") // false