Package: effect
Module: String
Converts a string to camelCase.
When to use
Use to normalize mixed word separators or existing PascalCase/camelCase text into lower-initial camelCase identifiers.
See
noCase for configurable delimiters and part transformspascalCase for upper-initial PascalCase outputsnakeCase for lowercase underscore-separated outputkebabCase for lowercase hyphen-separated outputconstantCase for uppercase underscore-separated outputSignature
declare const camelCase: (self: string) => string
Since v4.0.0