Function isCamelCase

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

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