Skip to content

Commit

Permalink
Close #450 - [extras-string] Add case conversion - Seq[String].mkKeba…
Browse files Browse the repository at this point in the history
…bCaseString
  • Loading branch information
kevin-lee committed Nov 4, 2023
1 parent 99c3c16 commit 4319f84
Show file tree
Hide file tree
Showing 2 changed files with 797 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ object cases extends cases {
def mkSnakeLowerCaseString: String =
ss.map(_.toSnakeLowerCase).mkString("_")

def mkKebabCaseString: String =
ss.map(_.toKebabCase).mkString("-")

}

}
Loading

0 comments on commit 4319f84

Please sign in to comment.