camelCaseToHyphens

Convert a lower camelcase string to snake case. We can't use regex to match at compile-time so we'll iterate through the string and convert it manually.

pure
string
camelCaseToHyphens
(
string s
)

Meta