package moe.nea.firmament.util object StringUtil { fun String.words(): Sequence { return splitToSequence(" ") // TODO: better boundaries } fun Iterable.unwords() = joinToString(" ") }