Documentation
    Preparing search index...

    Namespace NamingConvention

    String naming convention converters.

    NamingConvention converts between common code naming conventions: camelCase, PascalCase, and snake_case. Handles edge cases like consecutive uppercase letters (e.g., XMLParserxml_parser) and leading underscores.

    Functions:

    • camel: Convert to camelCase (fooBar)
    • pascal: Convert to PascalCase (FooBar)
    • snake: Convert to snake_case (foo_bar)
    • variable: Test if string is valid JavaScript variable name

    Jeongho Nam - https://github.com/samchon

    Functions

    camel
    capitalize
    localize
    pascal
    reserved
    snake
    variable