1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-03 00:15:27 +00:00
tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/MessageEntity/RemoveLeading.kt

9 lines
209 B
Kotlin
Raw Normal View History

2022-05-01 14:36:07 +00:00
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
}