Package: effect
Module: String
Converts a string to kebab-case (lowercase with hyphens).
When to use
Use to normalize free-form labels, identifiers, or keys into lowercase hyphen-separated text.
See
noCase for configurable delimiters and part transformssnakeCase for lowercase underscore-separated outputconstantCase for uppercase underscore-separated outputcamelCase for lower-initial camelCase outputpascalCase for upper-initial PascalCase outputSignature
declare const kebabCase: (self: string) => string
Since v4.0.0