core3-utils

@wixc3/common on Github

Home > @wixc3/common > toPascalCaseJsIdentifier

toPascalCaseJsIdentifier() function

Similar to toPascalCase(), but drops heading non-letters

Signature:

export declare function toPascalCaseJsIdentifier(str: string): string;

Parameters

Parameter Type Description
str string

Returns:

string

Example

toPascalCaseJsIdentifier("123helloWorld") // => "HelloWorld"