tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/MessageEntity/RemoveLeading.kt

9 lines
209 B
Kotlin

package dev.inmo.tgbotapi.types.MessageEntity
@Deprecated("Redundant and will be removed soon")
fun String.removeLeading(word: String) = if (startsWith(word)) {
substring(word.length)
} else {
this
}