Added single word clapback
This commit is contained in:
parent
e38fe9c3e5
commit
89d36d1d43
2 changed files with 8 additions and 4 deletions
|
@ -15,9 +15,13 @@ fun String.toSpongemock(): String {
|
|||
}
|
||||
|
||||
fun String.toClapText(): String {
|
||||
return this
|
||||
.split(' ')
|
||||
.joinToString(separator = " 👏 ")
|
||||
with(this
|
||||
.split(' ')) {
|
||||
if (this.size == 1) {
|
||||
return "\uD83D\uDC4F ${this[0]} \uD83D\uDC4F"
|
||||
}
|
||||
return joinToString(separator = " 👏 ")
|
||||
}
|
||||
}
|
||||
|
||||
private fun Int.isOdd(): Boolean = this.rem(2) == 0
|
|
@ -74,7 +74,7 @@ internal class TransformationsTest {
|
|||
@Test
|
||||
fun `Claptext works with one word`() {
|
||||
val actual = "Find"
|
||||
val expected = "Find"
|
||||
val expected = "\uD83D\uDC4F Find \uD83D\uDC4F"
|
||||
|
||||
assertEquals(expected, actual.toClapText())
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue