JS Utils Kit
    Preparing search index...

    Variable CAMEL_CASE_REGEXConst

    CAMEL_CASE_REGEX: RegExp = ...

    Matches strict camelCase strings.

    A valid camelCase string:

    • Starts with one or more lowercase letters
    • Contains at least one uppercase transition
    CAMEL_CASE_REGEX.test("helloWorld"); // true
    CAMEL_CASE_REGEX.test("myVar1Name"); // true

    CAMEL_CASE_REGEX.test("hello"); // false
    CAMEL_CASE_REGEX.test("HelloWorld"); // false
    CAMEL_CASE_REGEX.test("hello_world"); // false