refactor: Fix overlapping filenames for StringUtil
This commit is contained in:
@@ -5,5 +5,9 @@ object StringUtil {
|
||||
return splitToSequence(" ") // TODO: better boundaries
|
||||
}
|
||||
|
||||
fun parseIntWithComma(string: String): Int {
|
||||
return string.replace(",", "").toInt()
|
||||
}
|
||||
|
||||
fun Iterable<String>.unwords() = joinToString(" ")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user