Package: effect
Module: String
Converts a string to snake_case (lowercase with underscores).
When to use
Use to normalize mixed-case or separator-delimited text into lowercase words joined with underscores.
See
noCase for configurable lower-level normalizationkebabCase for lowercase hyphen-separated outputconstantCase for uppercase underscore-separated outputSignature
declare const snakeCase: (self: string) => string
Since v4.0.0