questions/00612-medium-kebabcase/README.ja.md
キャメルケースもしくはパスカルケースの文字列を、ケバブケースに置換する型を実装します。
FooBarBaz -> foo-bar-baz
例えば
type FooBarBaz = KebabCase<"FooBarBaz">;
const foobarbaz: FooBarBaz = "foo-bar-baz";
type DoNothing = KebabCase<"do-nothing">;
const doNothing: DoNothing = "do-nothing";
<a href="../../README.ja.md" target="_blank"></a> <a href="https://tsch.js.org/612/answer/ja" target="_blank"></a> <a href="https://tsch.js.org/612/solutions" target="_blank"></a> <hr><h3>関連する課題</h3><a href="https://github.com/type-challenges/type-challenges/blob/main/questions/00114-hard-camelcase/README.ja.md" target="_blank"></a> <!--info-footer-end-->